1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/flarum_ynh.git synced 2024-09-03 18:36:24 +02:00

Merge pull request #40 from YunoHost-Apps/patch-2

Remove ssowat_id from users table
This commit is contained in:
Titus PiJean 2017-02-28 19:28:26 +01:00 committed by GitHub
commit 1e2af630d2

View file

@ -178,10 +178,6 @@ if [[ $rep != 204 ]]; then
ynh_die "ERROR: Could not configure SSOwat extension"
fi
# Enable the selected admin to login with SSOwat
adminsql="UPDATE users SET ssowat_id = '$admin' WHERE username = '$admin'"
ynh_mysql_execute_as_root "$adminsql" $dbname
# Create missing users
for username in $(ynh_user_list); do
if [ "$username" == "$admin" ]; then continue; else
@ -196,8 +192,6 @@ for username in $(ynh_user_list); do
if [[ $rep != 201 ]]; then
ynh_die "ERROR: Flarum account creation failed for $username"
fi
usersql="UPDATE users SET ssowat_id = '$username' WHERE username = '$username'"
ynh_mysql_execute_as_root "$usersql" $dbname
fi
done
fi