summaryrefslogtreecommitdiff
path: root/upstart/cloud-init-nonet.conf
blob: 2ac98286a5fa940da8b78b888d347d1f2e4ab1e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# cloud-init-no-net
# the purpose of this job is
#  * to block running of cloud-init until a non 'lo' interface is up
#  * timeout if one doens't come up in a reasonable amount of time
start on mounted MOUNTPOINT=/ and stopped cloud-init-local
stop on net-device-up IFACE!=lo
task

console output

script
   # if a non 'lo' interface is up, exit immediately
   grep -qv '^lo' /var/run/network/ifstate && exit 0

   [ -f /var/lib/cloud/instance/obj.pkl ] && exit 0
   sleep 10
   echo $UPSTART_JOB "waiting for a network device."
   sleep 60
   echo $UPSTART_JOB "gave up waiting for a network device."
   : > /var/lib/cloud/data/no-net
end script
# EOF