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