mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-06 08:26:50 +01:00
12c5fb16be
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
33 lines
344 B
Bash
33 lines
344 B
Bash
#!/bin/sh
|
|
|
|
mkdir -p /run/lldpd
|
|
|
|
lldpd_start() {
|
|
/usr/sbin/lldpd >/dev/null 2>&1
|
|
}
|
|
|
|
lldpd_stop() {
|
|
killall lldpd
|
|
}
|
|
|
|
lldpd_restart() {
|
|
lldpd_stop
|
|
sleep 1
|
|
lldpd_start
|
|
}
|
|
|
|
case "$1" in
|
|
'start')
|
|
lldpd_start
|
|
;;
|
|
'stop')
|
|
lldpd_stop
|
|
;;
|
|
'restart')
|
|
lldpd_restart
|
|
;;
|
|
*)
|
|
echo "Usage: $0 start|stop|restart"
|
|
;;
|
|
esac
|
|
|