summaryrefslogtreecommitdiff
path: root/sysvinit/gentoo/cloud-init
blob: 5afc0f2eb40a543df20117bbd277f264c1fae200 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/sbin/openrc-run
# add depends for network, dns, fs etc
depend() {
  after cloud-init-local
  before cloud-config
  provide cloud-init
}

start() {
  cloud-init init
  eend 0
}