Add misc/fixes

Includes bot alert and misc files in /tmp/tmp
This commit is contained in:
Monocots 2021-06-09 02:10:42 +00:00
parent 4f5669d436
commit 4736d7739b
4 changed files with 83 additions and 0 deletions

View file

@ -0,0 +1,14 @@
#!/bin/bash
# Hacks...
if [ "$PWD" != "/var/SysmoBTS" ]; then
OLDPWD=$PWD
cd /var/SysmoBTS
fi
# Nothing to do.
if [ "$OLDPWD" != "" ]; then
cd $OLDPWD
fi