Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
wpos /
scriptlets /
Delete
Unzip
Name
Size
Permission
Date
Action
rpm_alt_python_trigger.sh
595
B
-r-xr-xr-x
2026-07-31 10:23
rpm_posttrans_wpos.sh
3.22
KB
-r-xr-xr-x
2026-07-31 10:23
rpm_preun_wpos.sh
1.11
KB
-r-xr-xr-x
2026-07-31 10:23
rpm_redis_trigger.sh
524
B
-r-xr-xr-x
2026-07-31 10:23
Save
Rename
#!/usr/bin/bash # Copyright © Cloud Linux GmbH & Cloud Linux Software, Inc 2010-2021 All Rights Reserved # # Licensed under CLOUD LINUX LICENSE AGREEMENT # http://cloudlinux.com/docs/LICENSE.TXT # RPM: # $1 == 1 -- upgrade # $1 == 0 -- uninstall # DEB: # $1 == remove/upgrade # "wpos PRE UNINSTALL STARTED" _clshare_wpos=$2 rhel=$3 if [[ "$1" == 0 || $1 == "remove" ]]; then /usr/share/cloudlinux/wpos/enable_redis_for_alt_php.py --remove-custom-ini >/dev/null 2>&1 # turning off suites cloudlinux-awp-admin set-suite --suites ALL --disallowed-for-all # uninstall of the hooks /usr/share/cloudlinux/wpos/wpos_hooks.py --uninstall >/dev/null 2>&1 # Stop WPOS daemon /sbin/service clwpos_monitoring stop if [[ $rhel -gt 6 ]]; then # CL7, 8, Solo systemctl disable clwpos_monitoring.service >/dev/null 2>&1 systemctl daemon-reload else # CL6 /sbin/chkconfig --del clwpos_monitoring fi fi # Uninstall plesk extension if [ -f "/usr/sbin/plesk" ]; then /usr/sbin/plesk bin extension -u accelerate-wp &>/dev/null fi # "wpos PRE UNINSTALL FINISHED"