1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/spip_ynh.git synced 2024-09-03 20:25:59 +02:00

Corrige la fonction CHECK_USER

This commit is contained in:
magikcypress 2017-02-21 16:29:38 +01:00
parent fdc03b4f01
commit 11341ae97c

View file

@ -42,7 +42,7 @@ TRAP_OFF () { # Ignoring signal capture until TRAP_ON
CHECK_USER () { # Vérifie la validité de l'user admin
# $1 = Variable de l'user admin.
sudo yunohost user list --json | grep -q "\"username\": \"$1\"" || (echo "Wrong admin" >&2 && false)
ynh_user_exists "$1" || (echo "Wrong admin" >&2 && false)
}
CHECK_PATH () { # Vérifie la présence du / en début de path. Et son absence à la fin.