diff options
Diffstat (limited to 'sysvinit/gentoo/cloud-init')
-rw-r--r-- | sysvinit/gentoo/cloud-init | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/sysvinit/gentoo/cloud-init b/sysvinit/gentoo/cloud-init new file mode 100644 index 00000000..6f3ff8ed --- /dev/null +++ b/sysvinit/gentoo/cloud-init @@ -0,0 +1,12 @@ +#!/sbin/runscript +# add depends for network, dns, fs etc +depend() { + after cloud-init-local + before cloud-final + provide cloud-init +} + +start() { + cloud-init init + eend 0 +} |