openvswitch service: fix ipsec startup order

This commit is contained in:
Jaka Hudoklin 2015-08-29 18:21:43 +02:00
parent 46203a790d
commit 29c0262708

View File

@ -67,7 +67,6 @@ in {
description = "Open_vSwitch Database Server"; description = "Open_vSwitch Database Server";
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
after = [ "systemd-udev-settle.service" ]; after = [ "systemd-udev-settle.service" ];
wants = [ "vswitchd.service" ];
path = [ cfg.package ]; path = [ cfg.package ];
restartTriggers = [ db cfg.package ]; restartTriggers = [ db cfg.package ];
# Create the config database # Create the config database
@ -108,6 +107,7 @@ in {
systemd.services.vswitchd = { systemd.services.vswitchd = {
description = "Open_vSwitch Daemon"; description = "Open_vSwitch Daemon";
wantedBy = [ "multi-user.target" ];
bindsTo = [ "ovsdb.service" ]; bindsTo = [ "ovsdb.service" ];
after = [ "ovsdb.service" ]; after = [ "ovsdb.service" ];
path = [ cfg.package ]; path = [ cfg.package ];
@ -135,8 +135,8 @@ in {
systemd.services.ovs-monitor-ipsec = { systemd.services.ovs-monitor-ipsec = {
description = "Open_vSwitch Ipsec Daemon"; description = "Open_vSwitch Ipsec Daemon";
wantedBy = [ "multi-user.target" ]; wantedBy = [ "multi-user.target" ];
requires = [ "racoon.service" ]; requires = [ "ovsdb.service" ];
after = [ "vswitchd.service" ]; before = [ "vswitchd.service" "racoon.service" ];
environment.UNIXCTLPATH = "/tmp/ovsdb.ctl.sock"; environment.UNIXCTLPATH = "/tmp/ovsdb.ctl.sock";
serviceConfig = { serviceConfig = {
ExecStart = '' ExecStart = ''