2019-03-24 18:31:54 +00:00
|
|
|
#!/bin/sh
|
|
|
|
# description: Start or stop telegram-bash-bot
|
|
|
|
#
|
2020-12-03 13:07:39 +00:00
|
|
|
# example service script to run bashbot in background as specified user
|
2020-11-29 14:34:00 +00:00
|
|
|
#
|
2020-12-03 13:07:39 +00:00
|
|
|
# tested on: ubuntu, opensuse, debian
|
2020-11-29 14:34:00 +00:00
|
|
|
#
|
2021-01-17 08:57:08 +00:00
|
|
|
#### $$VERSION$$ v1.30-0-g3266427
|
2019-04-01 16:24:05 +00:00
|
|
|
# shellcheck disable=SC2009
|
|
|
|
# shellcheck disable=SC2181
|
|
|
|
|
2019-03-28 15:51:33 +00:00
|
|
|
#
|
2019-03-24 18:31:54 +00:00
|
|
|
### 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
|
2019-04-02 19:43:38 +00:00
|
|
|
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-03-24 18:31:54 +00:00
|
|
|
|
2019-04-04 10:45:31 +00:00
|
|
|
#######################
|
|
|
|
# Configuration Section
|
2019-03-24 18:31:54 +00:00
|
|
|
|
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-12-03 13:58:32 +00:00
|
|
|
runas="nobody"
|
2019-03-24 18:31:54 +00:00
|
|
|
|
2020-11-29 14:34:00 +00:00
|
|
|
# uncomment one of the example lines to fit your system
|
2021-01-05 11:25:49 +00:00
|
|
|
# runcmd="su ${runas} -s /bin/bash -c " # runasuser with *su*
|
|
|
|
# runcmd="runuser ${runas} -s /bin/bash -c " # runasuser with *runuser*
|
2019-03-24 18:31:54 +00:00
|
|
|
|
2019-04-04 10:45:31 +00:00
|
|
|
# edit the values of the following lines to fit your config:
|
2021-01-10 15:01:52 +00:00
|
|
|
# your bot installation dir
|
|
|
|
bashbot="cd /usr/local/telegram-bot-bash; /usr/local/telegram-bot-bash/bashbot.sh"
|
|
|
|
# your bot name as given to botfather, e.g. mysomething_bot
|
|
|
|
name=""
|
|
|
|
# set additionl parameter, e.g. debug
|
|
|
|
mode=""
|
2019-04-04 10:45:31 +00:00
|
|
|
|
|
|
|
# END Configuration
|
|
|
|
#######################
|
|
|
|
|
2021-01-05 11:25:49 +00:00
|
|
|
[ "${name}" = "" ] && name="${runas}"
|
2019-03-24 18:31:54 +00:00
|
|
|
|
|
|
|
case "$1" in
|
|
|
|
'start')
|
2021-01-05 11:25:49 +00:00
|
|
|
# shellcheck disable=SC2250
|
2021-01-10 15:01:52 +00:00
|
|
|
$runcmd "$bashbot start $mode" # >/dev/null 2>&1 </dev/null
|
2019-03-24 18:31:54 +00:00
|
|
|
RETVAL=$?
|
|
|
|
;;
|
|
|
|
'stop')
|
2021-01-05 11:25:49 +00:00
|
|
|
# shellcheck disable=SC2250
|
2021-01-10 15:01:52 +00:00
|
|
|
$runcmd "$bashbot stop $mode"
|
2019-03-24 18:31:54 +00:00
|
|
|
RETVAL=$?
|
|
|
|
;;
|
|
|
|
'status')
|
2021-01-05 11:25:49 +00:00
|
|
|
ps -f -u "${runas}" | grep "${name}" | grep -qF "bashbot.sh startbot"
|
2019-03-24 18:31:54 +00:00
|
|
|
if [ "$?" = "0" ]; then
|
2021-01-16 09:10:16 +00:00
|
|
|
printf "bashbot (%s) is running\n" "${name}"
|
2019-03-24 18:31:54 +00:00
|
|
|
RETVAL=0
|
|
|
|
else
|
2021-01-05 11:25:49 +00:00
|
|
|
printf "bashbot (%s) is stopped\n" "${name}"
|
2019-03-24 18:31:54 +00:00
|
|
|
RETVAL=1
|
|
|
|
fi
|
|
|
|
;;
|
|
|
|
'restart'|'reload')
|
2019-03-25 10:11:22 +00:00
|
|
|
$0 stop; $0 start
|
2019-03-24 18:31:54 +00:00
|
|
|
RETVAL=$?
|
|
|
|
;;
|
2019-04-27 13:48:03 +00:00
|
|
|
'restartback')
|
|
|
|
$0 suspendback; $0 resumeback
|
|
|
|
RETVAL=$?
|
|
|
|
;;
|
2019-03-24 18:31:54 +00:00
|
|
|
'suspendback'|'resumeback'|'killback')
|
2021-01-05 11:25:49 +00:00
|
|
|
# shellcheck disable=SC2250
|
2021-01-10 15:01:52 +00:00
|
|
|
$runcmd "$bashbot $1 $mode"
|
2019-03-25 10:11:22 +00:00
|
|
|
RETVAL=$?
|
2020-06-07 11:30:59 +00:00
|
|
|
# kill inotifywait from runuser
|
|
|
|
if [ "$1" != "resumeback" ]; then
|
|
|
|
# shellcheck disable=SC2046
|
2021-01-05 11:25:49 +00:00
|
|
|
kill -9 $(ps -u "${runas}" | grep inotifywait | sed 's/ .*//') >/dev/null 2>&1
|
2020-05-14 11:04:57 +00:00
|
|
|
fi
|
2019-03-24 18:31:54 +00:00
|
|
|
;;
|
|
|
|
*)
|
2021-01-02 22:05:16 +00:00
|
|
|
printf "%s\n" "Usage: $0 { start | stop | restart | reload | restartback | suspendback | resumeback | killback }"
|
2019-03-24 18:31:54 +00:00
|
|
|
RETVAL=1
|
|
|
|
;;
|
|
|
|
esac
|
2021-01-05 11:25:49 +00:00
|
|
|
exit "${RETVAL}"
|