mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-24 10:02:29 +01:00
18 lines
365 B
Text
18 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
|
||
|
|