hc
2023-11-06 e3e12f52b214121840b44c91de5b3e5af5d3eb84
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#!/bin/sh
#
# Controls lldpd.
#
 
case $1 in
    start)
   printf "Starting lldpd: "
   start-stop-daemon -S -q -p /var/run/lldpd.pid --exec /usr/sbin/lldpd
   [ $? = 0 ] && echo "OK" || echo "FAIL"
   ;;
    stop)
   printf "Stopping lldpd: "
   start-stop-daemon -K -q -p /var/run/lldpd.pid
   [ $? = 0 ] && echo "OK" || echo "FAIL"
   ;;
    restart)
   $0 stop
   $0 start
   ;;
    *)
   echo "Usage: $0 {start|stop|restart}"
   exit 1
   ;;
esac