blob: 531a715d456e1b86566083294c99c2371f6ac3ef (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/sbin/openrc-run
# add depends for network, dns, fs etc
depend() {
after cloud-init-local
after net
before cloud-config
provide cloud-init
}
start() {
cloud-init init
eend 0
}
|