mirror of
https://github.com/octoleo/telegram-bot-bash.git
synced 2024-11-28 18:26:28 +00:00
bin: bashbot_inc: fix full path, add WEBHOOK path
This commit is contained in:
parent
34923ddabe
commit
f7842f4f60
@ -13,7 +13,7 @@
|
|||||||
# AUTHOR: KayM (gnadelwartz), kay@rrr.de
|
# AUTHOR: KayM (gnadelwartz), kay@rrr.de
|
||||||
# CREATED: 18.12.2020 12:27
|
# CREATED: 18.12.2020 12:27
|
||||||
#
|
#
|
||||||
#### $$VERSION$$ v1.40-0-gf9dab50
|
#### $$VERSION$$ v1.45-dev-50-g34923dd
|
||||||
#===============================================================================
|
#===============================================================================
|
||||||
|
|
||||||
############
|
############
|
||||||
@ -21,8 +21,8 @@
|
|||||||
export BASHBOT_HOME BASHBOT_ETC BASHBOT_VAR FILE_REGEX ME
|
export BASHBOT_HOME BASHBOT_ETC BASHBOT_VAR FILE_REGEX ME
|
||||||
|
|
||||||
# default: one dir up
|
# default: one dir up
|
||||||
BASHBOT_HOME="$(cd "${BASH_SOURCE[0]%/*}" >/dev/null 2>&1 && pwd)/../"
|
BASHBOT_HOME="$(cd "${BASH_SOURCE[0]%/*}/../" >/dev/null 2>&1 && pwd)"
|
||||||
[ "${BASHBOT_HOME}" = "/../" ] && BASHBOT_HOME="../"
|
[ "${BASHBOT_HOME}" = "" ] && BASHBOT_HOME="../"
|
||||||
|
|
||||||
# set you own BASHBOT_HOME if different, e.g.
|
# set you own BASHBOT_HOME if different, e.g.
|
||||||
# BASHBOT_HOME="/usr/local/telegram-bot-bash"
|
# BASHBOT_HOME="/usr/local/telegram-bot-bash"
|
||||||
@ -65,6 +65,10 @@ ME="${BOT_NAME}"
|
|||||||
[[ -z "${BOT_ADMIN}" || "${BOT_ADMIN}" == "?" ]] && printf "%s\n" "${ORANGE}Warning: Botadmin not set, send bot command${NC} /start"
|
[[ -z "${BOT_ADMIN}" || "${BOT_ADMIN}" == "?" ]] && printf "%s\n" "${ORANGE}Warning: Botadmin not set, send bot command${NC} /start"
|
||||||
[[ -z "${BOT_NAME}" ]] && printf "%s\n" "${ORANGE}Warning: Botname not set, run bashbot.sh botname"
|
[[ -z "${BOT_NAME}" ]] && printf "%s\n" "${ORANGE}Warning: Botname not set, run bashbot.sh botname"
|
||||||
|
|
||||||
|
# default webhook pipe
|
||||||
|
export WEBHOOK="${DATADIR}/webhook-fifo-${ME}"
|
||||||
|
|
||||||
|
|
||||||
# output command result or Telegram response
|
# output command result or Telegram response
|
||||||
print_result() { jssh_printDB "BOTSENT" | sort -r; }
|
print_result() { jssh_printDB "BOTSENT" | sort -r; }
|
||||||
print_response() { jssh_printDB "UPD"; }
|
print_response() { jssh_printDB "UPD"; }
|
||||||
|
Loading…
Reference in New Issue
Block a user