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 /
lve-utils /
scriptlets /
Delete
Unzip
Name
Size
Permission
Date
Action
rpm_post.sh
2.89
KB
-r-xr-xr-x
2026-07-29 13:24
rpm_posttrans.sh
6.73
KB
-r-xr-xr-x
2026-07-29 13:24
rpm_preun.sh
1.89
KB
-r-xr-xr-x
2026-07-29 13:24
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 # "lve-utils PRE UNINSTALL STARTED" rhel=$2 solo_marker=$3 container_marker=$4 if [[ "$1" == 0 || $1 == "remove" ]]; then # uninstall of the package if [[ $rhel -gt 6 ]]; then # CL7, 8, Solo if [[ ! -f $solo_marker && ! -f $container_marker ]]; then systemctl --no-reload disable lvectl.service > /dev/null 2>&1 systemctl stop lvectl.service > /dev/null 2>&1 systemctl --no-reload disable lve_namespaces.service > /dev/null 2>&1 systemctl stop lve_namespaces.service > /dev/null 2>&1 fi systemctl daemon-reload else # CL6 /sbin/service lvectl stop > /dev/null 2>&1 /sbin/service lve_namespaces stop > /dev/null 2>&1 /sbin/chkconfig --del lvectl /sbin/chkconfig --del lve_namespaces UPDATES='/etc/sysconfig/lve_updates' sed -i -e '/LVE_NAMESPACES/d' "$UPDATES" > /dev/null 2>&1 fi if [[ ! -f $solo_marker && ! -f $container_marker ]]; then rm -f /etc/cron.d/lveutils-panel-cron > /dev/null 2>&1 rm -f /etc/cron.d/cl_plus > /dev/null 2>&1 fi rm -f "%{cloudlinux_cron_file}" > /dev/null 2>&1 arch=$(uname -i) if [[ $arch == x86_64* ]]; then # For LU-1751 domain collector - all systems except CL6x32 rm -f "%{crondir_dom_coll_file}" > /dev/null 2>&1 fi # LU-1654: set cloudlinux=yes parameter in /usr/local/directadmin/custombuild/options.conf if [[ "DirectAdmin" == "$(/usr/bin/cldetect --detect-cp-nameonly)" ]]; then /usr/local/directadmin/custombuild/build set cloudlinux no fi fi # "lve-utils PRE UNINSTALL FINISHED"