mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-06 05:47:13 +02:00
15 lines
168 B
Plaintext
15 lines
168 B
Plaintext
#!/sbin/runscript
|
|
|
|
depend() {
|
|
need net
|
|
after firewall
|
|
after cloud-init-local
|
|
before cloud-config
|
|
provide cloud-init
|
|
}
|
|
|
|
start() {
|
|
cloud-init init
|
|
eend 0
|
|
}
|