diff --git a/cpanel/change-all-cpanel-users-passwords.sh b/cpanel/change-all-cpanel-users-passwords.sh index 1fc764b..124ee95 100644 --- a/cpanel/change-all-cpanel-users-passwords.sh +++ b/cpanel/change-all-cpanel-users-passwords.sh @@ -3,5 +3,5 @@ ls -1 /var/cpanel/users | while read user; do pass=`strings /dev/urandom | tr -dc .~?_A-Za-z0-9 | head -c16 | xargs` echo “$user $pass” >> new-pass.txt /scripts/realchpass $user $pass -#/scripts/ftpupdate +/scripts/ftpupdate # (this will update ftp passwords as well) done