PNG  IHDR;IDATxܻn0K )(pA 7LeG{ §㻢|ذaÆ 6lذaÆ 6lذaÆ 6lom$^yذag5bÆ 6lذaÆ 6lذa{ 6lذaÆ `}HFkm,mӪôô! x|'ܢ˟;E:9&ᶒ}{v]n&6 h_tڠ͵-ҫZ;Z$.Pkž)!o>}leQfJTu іچ\X=8Rن4`Vwl>nG^is"ms$ui?wbs[m6K4O.4%/bC%t Mז -lG6mrz2s%9s@-k9=)kB5\+͂Zsٲ Rn~GRC wIcIn7jJhۛNCS|j08yiHKֶۛkɈ+;SzL/F*\Ԕ#"5m2[S=gnaPeғL lذaÆ 6l^ḵaÆ 6lذaÆ 6lذa; _ذaÆ 6lذaÆ 6lذaÆ RIENDB` #!/bin/bash if [[ $1 == "" ]] ; then echo "=-=-=-=-=-=-=-=-=-=-=-=-=-=-" echo "Welcome to VPS part" echo "Possible options are:" echo "--------------------" echo -e "\e[33m----------\e[0m" echo -e "\e[32msuspend \e[0m"- suspend all accounts echo -e "\e[31mexample: 112v suspend\e[0m" echo -e "\e[33m----------\e[0m" echo -e "\e[32munsuspend \e[0m"- unsuspend all accounts echo -e "\e[31mexample: 112v unsuspend \e[0m" echo -e "\e[33m----------\e[0m" echo -e "\e[32mexclude \e[0m"- send request to remove from mass password changes echo -e "\e[31mexample: 112v exclude\e[0m" echo -e "\e[33m----------\e[0m" echo -e "\e[32minclude \e[0m"- send request to add again for mass password changes echo -e "\e[31mexample: 112v include\e[0m" echo -e "\e[33m----------\e[0m" echo "Have a nice work" echo "" fi #suspendall if [[ $1 == "suspend" ]] ; then cd /var/cpanel/users find * -exec /scripts/suspendacct {} \; echo "suspended" |mail -s "$HOSTNAME was suspended" pavlin@tmdhosting.net fi #unsuspendall if [[ $1 == "unsuspend" ]] ; then cd /var/cpanel/users find * -exec /scripts/unsuspendacct {} \; echo "unsuspended" | mail -s "$HOSTNAME was unsuspended" pavlin@tmdhosting.net fi #exclude for password change if [[ $1 == "exclude" ]] ; then echo "Please remove this $HOSTNAME from password change list " | mail -s "WARNING $HOSTNAME password exclude request WARNING" techs-report@tmdhosting.net,operations@tmdhosting.net,pavlin@tmdhosting.net fi #include for password change if [[ $1 == "include" ]] ; then echo "Please add this $HOSTNAME from password change list , we own it " | mail -s "WARNING $HOSTNAME password include request WARNING" techs-report@tmdhosting.net,operations@tmdhosting.net,pavlin@tmdhosting.net fi