1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/teampass_ynh.git synced 2024-09-03 20:26:37 +02:00

force_stop silencieux et check user verbeux

This commit is contained in:
Maniack Crudelis 2016-06-04 23:33:21 +02:00
parent 791270cd58
commit b8a59e92c8

View file

@ -50,14 +50,11 @@ fi
# Vérifie la disponibilité du path et du domaine. # Vérifie la disponibilité du path et du domaine.
sudo yunohost app checkurl $domain$path -a $app sudo yunohost app checkurl $domain$path -a $app
if [[ ! $? -eq 0 ]]; then
touch /force_stop
fi
# Vérifie que le mot de passe n'est pas vide. # Vérifie que le mot de passe n'est pas vide.
if [[ -z $password_admin ]]; then if [[ -z $password_admin ]]; then
echo "Mot de passe incorrect" echo "Mot de passe incorrect"
touch /force_stop touch /force_stop 2> /dev/null
fi fi
# Vérifie que le dossier de destination n'est pas déjà utilisé. # Vérifie que le dossier de destination n'est pas déjà utilisé.
@ -65,7 +62,7 @@ final_path=/var/www/$app
if [ -e "$final_path" ] if [ -e "$final_path" ]
then then
echo "This path already contains a folder" echo "This path already contains a folder"
touch /force_stop touch /force_stop 2> /dev/null
fi fi