diff options
Diffstat (limited to 'testing/cloud-init/cloud-init.initd')
-rw-r--r-- | testing/cloud-init/cloud-init.initd | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/cloud-init/cloud-init.initd b/testing/cloud-init/cloud-init.initd new file mode 100644 index 0000000000..c901449a9f --- /dev/null +++ b/testing/cloud-init/cloud-init.initd @@ -0,0 +1,14 @@ +#!/sbin/runscript + +depend() { + need net + after firewall + after cloud-init-local + before cloud-config + provide cloud-init +} + +start() { + cloud-init init + eend 0 +} |