Remove obsolete file.
[connman] / debian / connman.upstart
1 description "starting connman"
2 author "Jukka Rissanen"
3
4 console none
5
6 # We do not start automatically yet
7 #start on started xsession
8 stop on ACT_DEAD
9 stop on stopping dbus
10
11 pre-start script
12         /usr/sbin/waitdbus system
13         initctl stop icd2
14         initctl stop wlancond
15         initctl stop dnsmasq
16 end script
17
18 post-stop script
19         # stop dnsmasq, wlancond and icd2 because
20         # they are in use in this system at the moment
21         initctl start dnsmasq
22         initctl start wlancond
23         initctl start icd2
24         killall wpa_supplicant
25 end script
26
27 exec /usr/sbin/connmand -n -i wlan*
28
29 respawn