]> git.ipfire.org Git - thirdparty/lldpd.git/blob - debian/lldpd.upstart
daemon: don't fork at all when using upstart
[thirdparty/lldpd.git] / debian / lldpd.upstart
1
2 # lldpd - LLDP daemon
3 #
4 # lldpd is a 802.1AB implementation, a L2 network discovery
5 # protocol. It also supports CDP, EDP and various other protocols.
6
7 description "LLDP daemon"
8
9 start on net-device-up IFACE=lo
10 stop on runlevel [06]
11
12 respawn
13
14 script
15 . /etc/default/lldpd
16 exec lldpd -d $DAEMON_ARGS
17 end script