fixed bot not launching if tmpdir had to be made

This commit is contained in:
celso 2023-03-26 09:47:14 -03:00
parent 6db5bff9b9
commit 001913105d
1 changed files with 4 additions and 2 deletions

6
bot.sh
View File

@ -9,8 +9,10 @@ api_url="https://api.telegram.org/bot${TELEGRAM_DNS_TOKEN}/"
botid="6040192441" botid="6040192441"
bot_tmpdir="/tmp/tpdnsbot/" bot_tmpdir="/tmp/tpdnsbot/"
[ -d "${bot_tmpdir}" ] || { [ -d "${bot_tmpdir}" ] || {
mkdir "${bot_tmpdir}" || printf "error: can't write to /tmp\n" mkdir "${bot_tmpdir}" || {
exit 2 printf "error: can't write to /tmp\n"
exit 2
}
} }
exec 2>"${bot_tmpdir}/error.log" exec 2>"${bot_tmpdir}/error.log"