mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 12:15:32 +03:00
14 lines
168 B
Text
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
|
|
}
|