1234567891011121314151617181920212223242526272829 |
- #!/bin/bash
- ### BEGIN INIT INFO
- # Provides: perl
- # Required-Start:
- # Required-Stop:
- # Default-Start: 2 3 4 5
- # Default-Stop: 0 1 6
- # Short-Description: Lance le bot qui surveille le topic de #fdn
- # Description: Lance le bot qui surveille le topic de #fdn
- ### END INIT INFO
- case "$1" in
- start)
- echo "Starting fdn-accbot.pl..."
- /usr/local/bin/fdn-accbot.pl /var/www/fdn/index.html &
- ;;
- stop)
- echo "Stopping fdn-accbot.pl..."
- /bin/kill $(/bin/ps -eo '%p%a' | /bin/grep fdn-accbot | /bin/grep -v grep | /usr/bin/awk '{ print $1 }') 2> /dev/null
- ;;
- *)
- echo "Usage: $0 {start|stop}" >&2
- exit 1
- ;;
- esac
- exit 0
|