mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-10 08:38:28 +00:00
75 lines
1.7 KiB
Bash
Executable file
75 lines
1.7 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
[ -z "$AIL_HOME" ] && echo "Needs the env var AIL_HOME. Run the script from the virtual environment." && exit 1;
|
|
[ -z "$AIL_REDIS" ] && echo "Needs the env var AIL_REDIS. Run the script from the virtual environment." && exit 1;
|
|
[ -z "$AIL_ARDB" ] && echo "Needs the env var AIL_ARDB. Run the script from the virtual environment." && exit 1;
|
|
[ -z "$AIL_BIN" ] && echo "Needs the env var AIL_ARDB. Run the script from the virtual environment." && exit 1;
|
|
[ -z "$AIL_FLASK" ] && echo "Needs the env var AIL_FLASK. Run the script from the virtual environment." && exit 1;
|
|
|
|
export PATH=$AIL_HOME:$PATH
|
|
export PATH=$AIL_REDIS:$PATH
|
|
export PATH=$AIL_ARDB:$PATH
|
|
export PATH=$AIL_BIN:$PATH
|
|
export PATH=$AIL_FLASK:$PATH
|
|
|
|
GREEN="\\033[1;32m"
|
|
DEFAULT="\\033[0;39m"
|
|
|
|
echo -e $GREEN"Shutting down AIL ..."$DEFAULT
|
|
bash ${AIL_BIN}/LAUNCH.sh -k
|
|
wait
|
|
|
|
echo ""
|
|
echo -e $GREEN"Create Self-Signed Certificate"$DEFAULT
|
|
echo ""
|
|
pushd ${AIL_BIN}/helper/gen_cert
|
|
bash gen_root.sh
|
|
wait
|
|
bash gen_cert.sh
|
|
wait
|
|
popd
|
|
|
|
cp ${AIL_BIN}/helper/gen_cert/server.crt ${AIL_FLASK}/server.crt
|
|
cp ${AIL_BIN}/helper/gen_cert/server.key ${AIL_FLASK}/server.key
|
|
|
|
echo ""
|
|
echo -e $GREEN"Update requirement"$DEFAULT
|
|
echo ""
|
|
pip3 install flask-login
|
|
wait
|
|
echo ""
|
|
pip3 install bcrypt
|
|
wait
|
|
echo ""
|
|
echo ""
|
|
|
|
bash ${AIL_BIN}/LAUNCH.sh -lav &
|
|
wait
|
|
echo ""
|
|
|
|
echo ""
|
|
echo -e $GREEN"Updating AIL VERSION ..."$DEFAULT
|
|
echo ""
|
|
python ${AIL_HOME}/update/v2.0/Update.py
|
|
wait
|
|
echo ""
|
|
echo ""
|
|
|
|
echo ""
|
|
echo -e $GREEN"Update thirdparty ..."$DEFAULT
|
|
bash ${AIL_BIN}/LAUNCH.sh -t
|
|
wait
|
|
echo ""
|
|
|
|
echo ""
|
|
echo -e $GREEN"Create Default User"$DEFAULT
|
|
echo ""
|
|
python3 ${AIL_FLASK}create_default_user.py
|
|
|
|
|
|
echo ""
|
|
echo -e $GREEN"Shutting down ARDB ..."$DEFAULT
|
|
bash ${AIL_BIN}/LAUNCH.sh -k
|
|
wait
|
|
|
|
exit 0
|