puppet/modules/rhizo_base/files/tmp/fix.sh
Monocots 4736d7739b Add misc/fixes
Includes bot alert and misc files in /tmp/tmp
2021-06-09 02:10:42 +00:00

14 lines
164 B
Bash

#!/bin/bash
# Hacks...
if [ "$PWD" != "/var/SysmoBTS" ]; then
OLDPWD=$PWD
cd /var/SysmoBTS
fi
# Nothing to do.
if [ "$OLDPWD" != "" ]; then
cd $OLDPWD
fi