mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-25 20:25:28 +03:00
13 lines
163 B
Text
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
|
|
}
|