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

start() {
  cloud-init init
  eend 0
}