slackbuilds_ponce/network/lldpd/README.SBo
Thibaut Notteboom 287346028f network/lldpd: Added (an implementation of IEEE 802.1ab (LLDP)).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
2017-03-18 06:58:13 +07:00

17 lines
365 B
Text

README.SBo
==========
To start lldpd automatically at system startup, add the following to
your /etc/rc.d/rc.local:
if [ -x /etc/rc.d/rc.lldpd ]; then
/etc/rc.d/rc.lldpd start
fi
To stop lldpd automatically at system shutdown, add the following to
your /etc/rc.d/rc.local_shutdown:
if [ -x /etc/rc.d/rc.lldpd ]; then
/etc/rc.d/rc.lldpd stop
fi