mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 20:25:28 +03:00
13 lines
177 B
Text
13 lines
177 B
Text
#!/sbin/runscript
|
|
|
|
depend() {
|
|
after cloud-init-local
|
|
after cloud-init
|
|
before cloud-final
|
|
provide cloud-config
|
|
}
|
|
|
|
start() {
|
|
cloud-init modules --mode config
|
|
eend 0
|
|
}
|