summaryrefslogtreecommitdiff
path: root/sysvinit/gentoo
diff options
context:
space:
mode:
Diffstat (limited to 'sysvinit/gentoo')
-rw-r--r--sysvinit/gentoo/cloud-config13
-rw-r--r--sysvinit/gentoo/cloud-final11
-rw-r--r--sysvinit/gentoo/cloud-init12
-rw-r--r--sysvinit/gentoo/cloud-init-local13
4 files changed, 0 insertions, 49 deletions
diff --git a/sysvinit/gentoo/cloud-config b/sysvinit/gentoo/cloud-config
deleted file mode 100644
index b0fa786d..00000000
--- a/sysvinit/gentoo/cloud-config
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/sbin/runscript
-
-depend() {
- after cloud-init-local
- after cloud-init
- before cloud-final
- provide cloud-config
-}
-
-start() {
- cloud-init modules --mode config
- eend 0
-}
diff --git a/sysvinit/gentoo/cloud-final b/sysvinit/gentoo/cloud-final
deleted file mode 100644
index b457a354..00000000
--- a/sysvinit/gentoo/cloud-final
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/sbin/runscript
-
-depend() {
- after cloud-config
- provide cloud-final
-}
-
-start() {
- cloud-init modules --mode final
- eend 0
-}
diff --git a/sysvinit/gentoo/cloud-init b/sysvinit/gentoo/cloud-init
deleted file mode 100644
index 9ab64ad8..00000000
--- a/sysvinit/gentoo/cloud-init
+++ /dev/null
@@ -1,12 +0,0 @@
-#!/sbin/runscript
-# add depends for network, dns, fs etc
-depend() {
- after cloud-init-local
- before cloud-config
- provide cloud-init
-}
-
-start() {
- cloud-init init
- eend 0
-}
diff --git a/sysvinit/gentoo/cloud-init-local b/sysvinit/gentoo/cloud-init-local
deleted file mode 100644
index 9d47263e..00000000
--- a/sysvinit/gentoo/cloud-init-local
+++ /dev/null
@@ -1,13 +0,0 @@
-#!/sbin/runscript
-
-depend() {
- after localmount
- after netmount
- before cloud-init
- provide cloud-init-local
-}
-
-start() {
- cloud-init init --local
- eend 0
-}