cloud-init/inits/sysvinit/gentoo/cloud-init

13 lines
178 B
Plaintext

#!/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
}