diff options
author | Thibaut Notteboom <thibaut.notteboom@gmail.com> | 2017-03-12 00:18:06 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-03-18 06:58:13 +0700 |
commit | 287346028fe6fff374c4be88e1156ea0e079e7fe (patch) | |
tree | 9858c83480ca2e6accbcc006210751671e799dba /network/lldpd/README.SBo | |
parent | fe183a3c4da659e7b148b737d17d1f00d16faadd (diff) |
network/lldpd: Added (an implementation of IEEE 802.1ab (LLDP)).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'network/lldpd/README.SBo')
-rw-r--r-- | network/lldpd/README.SBo | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/network/lldpd/README.SBo b/network/lldpd/README.SBo new file mode 100644 index 0000000000000..ea6cad9264d28 --- /dev/null +++ b/network/lldpd/README.SBo @@ -0,0 +1,17 @@ +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 + |