Browse Source

Update reset_admin_password.sh

FusionPBX 6 years ago
parent
commit
a636d1a410
1 changed files with 2 additions and 2 deletions
  1. 2 2
      centos/resources/reset_admin_password.sh

+ 2 - 2
centos/resources/reset_admin_password.sh

@@ -9,14 +9,14 @@ cd "$(dirname "$0")"
 . ./environment.sh
 
 #count the users
-admin_users=$(sudo -u postgres psql fusionpbx -Atc "select count(*) from v_users JOIN v_group_users USING (domain_uuid) where username='$system_username' and group_name = 'superadmin'")
+admin_users=$(sudo -u postgres psql fusionpbx -Atc "select count(*) from v_users JOIN v_user_groups USING (domain_uuid) where username='$system_username' and group_name = 'superadmin'")
 
 if [ .$admin_users = .'0' ]; then
 	error "i could not find the user '$system_username' in the database, check your resources/config.sh is correct"
 elif [ .$admin_users = .'' ]; then
 	error "something went wrong, see errors above";
 else
-	admin_uuids=$(sudo -u postgres psql fusionpbx -Atc "select v_users.user_uuid from v_users JOIN v_group_users USING (domain_uuid) where username='$system_username' and group_name = 'superadmin'")
+	admin_uuids=$(sudo -u postgres psql fusionpbx -Atc "select v_users.user_uuid from v_users JOIN v_user_groups USING (domain_uuid) where username='$system_username' and group_name = 'superadmin'")
 	for admin_uuid in $admin_uuids; do
 		user_salt=$(/usr/bin/php /var/www/fusionpbx/resources/uuid.php);
 		if [ .$system_password = .'random' ]; then