From 6ac8ebe67a68b5e8f602b55df947d075e2ac9e4f Mon Sep 17 00:00:00 2001 From: Bogdan Stoica Date: Mon, 9 Oct 2017 16:01:21 +0300 Subject: [PATCH] Update change-all-cpanel-users-passwords.sh Update ftp password for cPanel users --- cpanel/change-all-cpanel-users-passwords.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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