summaryrefslogtreecommitdiff
path: root/sysvinit/gentoo/cloud-init-local
diff options
context:
space:
mode:
Diffstat (limited to 'sysvinit/gentoo/cloud-init-local')
-rw-r--r--sysvinit/gentoo/cloud-init-local13
1 files changed, 13 insertions, 0 deletions
diff --git a/sysvinit/gentoo/cloud-init-local b/sysvinit/gentoo/cloud-init-local
new file mode 100644
index 00000000..7c39ff78
--- /dev/null
+++ b/sysvinit/gentoo/cloud-init-local
@@ -0,0 +1,13 @@
+#!/sbin/runscript
+
+depend() {
+ after cloud-config
+ before cloud-init
+ before cloud-final
+ provide cloud-init-local
+}
+
+start() {
+ cloud-init init --local
+ eend 0
+}