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

13 lines
163 B
Text

#!/sbin/runscript
depend() {
after localmount
after netmount
before cloud-init
provide cloud-init-local
}
start() {
cloud-init init --local
eend 0
}