hc
2023-12-06 08f87f769b595151be1afeff53e144f543faa614
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