1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-25 12:15:32 +03:00
aports/testing/cloud-init/cloud-init.initd
2016-03-25 12:06:58 +00:00

14 lines
168 B
Text

#!/sbin/runscript
depend() {
need net
after firewall
after cloud-init-local
before cloud-config
provide cloud-init
}
start() {
cloud-init init
eend 0
}