chg: [launcher] add option to reset UI admin password

pull/519/head
Terrtia 2020-05-19 10:07:27 +02:00
parent 399e379241
commit 85a0d944cc
No known key found for this signature in database
GPG Key ID: 1E1B1F50D84613D0
1 changed files with 14 additions and 0 deletions

View File

@ -83,6 +83,7 @@ function helptext {
[-c | --crawler] LAUNCH Crawlers
[-f | --launchFeeder] LAUNCH Pystemon feeder
[-t | --thirdpartyUpdate] Update Web
[-rp | --resetPassword] Reset Password
[-m | --menu] Display Advanced Menu
[-h | --help] Help
"
@ -483,6 +484,17 @@ function update_thirdparty {
fi
}
function reset_password() {
echo -e "\t* Reseting UI admin password..."
if checking_ardb && checking_redis; then
python ${AIL_HOME}/var/www/create_default_user.py &
wait
else
echo -e $RED"\t* Error: Please launch all Redis and ARDB servers"$DEFAULT
exit
fi
}
function launch_all {
checking_configuration;
update;
@ -598,6 +610,8 @@ while [ "$1" != "" ]; do
;;
-t | --thirdpartyUpdate ) update_thirdparty;
;;
-rp | --resetPassword ) reset_password;
;;
-c | --crawler ) launching_crawler;
;;
-f | --launchFeeder ) launch_feeder;