diff options
author | Robert Schweikert <rjschwei@suse.com> | 2019-09-26 14:39:27 +0000 |
---|---|---|
committer | Server Team CI Bot <josh.powers+server-team-bot@canonical.com> | 2019-09-26 14:39:27 +0000 |
commit | 66ef979a2d7b8003def1ee4d7a6b6a261b37e0ee (patch) | |
tree | d90b374285c5deae64d2250f21b65b6637d630f3 /systemd/cloud-init.service.tmpl | |
parent | b19177e2c963d07bb4a5dad24691f194227ca422 (diff) | |
download | vyos-cloud-init-66ef979a2d7b8003def1ee4d7a6b6a261b37e0ee.tar.gz vyos-cloud-init-66ef979a2d7b8003def1ee4d7a6b6a261b37e0ee.zip |
systemd/cloud-init.service.tmpl: start after wicked.service
Change the startup order. On SUSE distros cloud-init.service
should start after wicked.service. This reflects the same
start up order other distributions utilize.
Diffstat (limited to 'systemd/cloud-init.service.tmpl')
-rw-r--r-- | systemd/cloud-init.service.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/systemd/cloud-init.service.tmpl b/systemd/cloud-init.service.tmpl index 5cb00371..1e5942a8 100644 --- a/systemd/cloud-init.service.tmpl +++ b/systemd/cloud-init.service.tmpl @@ -14,7 +14,7 @@ After=networking.service After=network.service {% endif %} {% if variant in ["suse"] %} -Before=wicked.service +After=wicked.service # setting hostname via hostnamectl depends on dbus, which otherwise # would not be guaranteed at this point. After=dbus.service |