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