aboutsummaryrefslogtreecommitdiffstats
path: root/testing/cloud-init/cloud-init-local.initd
blob: 9d47263e22f2e2e47607fc28ab72ab2eea9f7b76 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/sbin/runscript

depend() {
  after localmount
  after netmount
  before cloud-init
  provide cloud-init-local
}

start() {
  cloud-init init --local
  eend 0
}