You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Comrad/bin/komrade-apocalype

21 lines
580 B
Plaintext

SCRIPTPATH="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
wd=`pwd`
path=`realpath "$SCRIPTPATH/../../data"`
path_code=`realpath "$SCRIPTPATH/../../code"`
echo "Removing $path. You will permanently lose your users and contacts, including the prime entities of Operator, Telephone, and World. Proceed? "
read -p "[y/N] " y_n
echo $y_n
if [ ! "$y_n" = "y" ]; then
echo "Cancelling"
else
rm -r $path
#echo "Reregistering..."
#comrad-cli /register
cd $path_code
python -c "from comrad import *; create_phonelines()"
comrad-update
fi