telegram-bot-bash/bashbot.rc

83 lines
2.0 KiB
Plaintext
Raw Normal View History

#!/bin/sh
# description: Start or stop telegram-bash-bot
#
#### $$VERSION$$ v1.2-dev-13-g2a5d47d
2019-04-01 16:24:05 +00:00
# shellcheck disable=SC2009
# shellcheck disable=SC2181
#
### BEGIN INIT INFO
# Provides: bashbot
# Required-Start: $network $syslog
# Required-Stop: $network
# Default-Start: 2 3 5
# Default-Stop: 0 1 6
# Description: Start or stop telegram-bot-bash server
### END INIT INFO
2019-04-04 10:45:31 +00:00
# save default values
TERM="" # disable bashbot clear and color output
2020-06-23 14:35:50 +00:00
runcmd="echo Dry run:" # not activated until you edit lines below
2019-04-04 10:45:31 +00:00
#######################
# Configuration Section
2019-04-04 10:45:31 +00:00
# edit the next line to fit the user you want to run bashbot, e.g. nobody:
2020-09-26 19:26:18 +00:00
runas="nobody"
2019-04-04 10:45:31 +00:00
# uncomment one of the following lines to fit your system
# runcmd="su $runas -s /bin/bash -c " # runasuser with *su*
# runcmd="runuser $runas -s /bin/bash -c " # runasuser with *runuser*
2019-04-04 10:45:31 +00:00
# edit the values of the following lines to fit your config:
start="cd /usr/local/telegram-bot-bash; /usr/local/telegram-bot-bash/bashbot.sh" # location of your bashbot.sh script
2019-04-04 10:45:31 +00:00
name='' # your bot name as given to botfather, e.g. mysomething_bot
# END Configuration
#######################
[ "$name" = "" ] && name="$runas"
case "$1" in
'start')
$runcmd "$start start" # >/dev/null 2>&1 </dev/null
RETVAL=$?
;;
'stop')
$runcmd "$start stop"
RETVAL=$?
;;
'status')
ps -f -u "$runas" | grep "$name" | grep -qF "bashbot.sh startbot"
if [ "$?" = "0" ]; then
2019-04-04 10:45:31 +00:00
echo "bashbot ($name) is running"
RETVAL=0
else
2019-04-04 10:45:31 +00:00
echo "bashbot ($name) is stopped"
RETVAL=1
fi
;;
'restart'|'reload')
$0 stop; $0 start
RETVAL=$?
;;
2019-04-27 13:48:03 +00:00
'restartback')
$0 suspendback; $0 resumeback
RETVAL=$?
;;
'suspendback'|'resumeback'|'killback')
$runcmd "$start $1"
RETVAL=$?
# kill inotifywait from runuser
if [ "$1" != "resumeback" ]; then
# shellcheck disable=SC2046
kill -9 $(ps -u "$runas" | grep inotifywait | sed 's/ .*//') >/dev/null 2>&1
2020-05-14 11:04:57 +00:00
fi
;;
*)
2019-04-27 13:48:03 +00:00
echo "Usage: $0 { start | stop | restart | reload | restartback | suspendback | resumeback | killback }"
RETVAL=1
;;
esac
exit $RETVAL