openvswitch service: fix ipsec startup order
This commit is contained in:
parent
46203a790d
commit
29c0262708
@ -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 = ''
|
||||||
|
Loading…
Reference in New Issue
Block a user