diff options
-rw-r--r-- | sysvinit/gentoo/cloud-config | 5 | ||||
-rw-r--r-- | sysvinit/gentoo/cloud-final | 4 | ||||
-rw-r--r-- | sysvinit/gentoo/cloud-init | 2 | ||||
-rw-r--r-- | sysvinit/gentoo/cloud-init-local | 3 |
4 files changed, 6 insertions, 8 deletions
diff --git a/sysvinit/gentoo/cloud-config b/sysvinit/gentoo/cloud-config index affd0cb3..b0fa786d 100644 --- a/sysvinit/gentoo/cloud-config +++ b/sysvinit/gentoo/cloud-config @@ -1,9 +1,8 @@ #!/sbin/runscript depend() { - after net # remove after nova-agent fix - before cloud-init-local - before cloud-init + after cloud-init-local + after cloud-init before cloud-final provide cloud-config } diff --git a/sysvinit/gentoo/cloud-final b/sysvinit/gentoo/cloud-final index 140c0f8e..b457a354 100644 --- a/sysvinit/gentoo/cloud-final +++ b/sysvinit/gentoo/cloud-final @@ -1,7 +1,7 @@ #!/sbin/runscript -# add depends for network, dns, fs etc + depend() { - after cloud-init + after cloud-config provide cloud-final } diff --git a/sysvinit/gentoo/cloud-init b/sysvinit/gentoo/cloud-init index 6f3ff8ed..9ab64ad8 100644 --- a/sysvinit/gentoo/cloud-init +++ b/sysvinit/gentoo/cloud-init @@ -2,7 +2,7 @@ # add depends for network, dns, fs etc depend() { after cloud-init-local - before cloud-final + before cloud-config provide cloud-init } diff --git a/sysvinit/gentoo/cloud-init-local b/sysvinit/gentoo/cloud-init-local index 7c39ff78..1d22a79d 100644 --- a/sysvinit/gentoo/cloud-init-local +++ b/sysvinit/gentoo/cloud-init-local @@ -1,9 +1,8 @@ #!/sbin/runscript depend() { - after cloud-config + after net # remove after nova-agent fix before cloud-init - before cloud-final provide cloud-init-local } |