|
Server : LiteSpeed System : Linux srv104790275 5.15.0-161-generic #171-Ubuntu SMP Sat Oct 11 08:17:01 UTC 2025 x86_64 User : dewac4139 ( 1077) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/local/lsws/admin/misc/ |
Upload File : |
#!/bin/sh
CURDIR=`dirname "$0"`
cd $CURDIR
CURDIR=`pwd`
INST_USER=`id`
INST_USER=`expr "$INST_USER" : 'uid=.*(\(.*\)) gid=.*'`
if [ $INST_USER != "root" ]; then
cat <<EOF
[ERROR] Only root user can uninstall the rc script!
EOF
exit 1
fi
INIT_DIR=""
if [ "x`uname -s`" = "xFreeBSD" ]; then
if [ -d "/usr/local/etc/rc.d" ]; then
rm -f /usr/local/etc/rc.d/lsws
echo "[OK] The startup script has been successfully uninstalled!"
exit 0
fi
fi
if [ -f "/etc/gentoo-release" ]; then
rc-update del lsws default
rm /etc/init.d/lsws
exit 0
fi
for SYSTEMDDIR in /etc/systemd/system /usr/lib/systemd/system /lib/systemd/system
do
if [ -d ${SYSTEMDDIR} ] && [ -e ${SYSTEMDDIR}/lshttpd.service ] ; then
systemctl disable lshttpd.service
if [ -e ${SYSTEMDDIR}/lsws.service ] ; then
rm -f ${SYSTEMDDIR}/lsws.service
fi
rm -f ${SYSTEMDDIR}/lshttpd.service
systemctl daemon-reload
echo "[OK] The startup script has been successfully uninstalled from systemd!"
fi
done
for path in /etc/init.d /etc/rc.d/init.d
do
if [ "x$INIT_DIR" = "x" ]; then
if [ -d "$path" ]; then
INIT_DIR=$path
fi
fi
done
if [ "x$INIT_DIR" = "x" ]; then
echo "[ERROR] failed to find the init.d directory!"
exit 1
fi
if [ -f "$INIT_DIR/lsws" ]; then
rm -f $INIT_DIR/lsws
fi
if [ -d "$INIT_DIR/rc2.d" ]; then
INIT_BASE_DIR=$INIT_DIR
else
INIT_BASE_DIR=`dirname $INIT_DIR`
fi
if [ -d "$INIT_BASE_DIR/runlevel/default" ]; then
rm -f $INIT_BASE_DIR/runlevel/default/S88lsws
rm -f $INIT_BASE_DIR/runlevel/default/K12lsws
fi
if [ -d "$INIT_BASE_DIR/rc2.d" ]; then
rm -f $INIT_BASE_DIR/rc2.d/S88lsws
rm -f $INIT_BASE_DIR/rc2.d/K12lsws
fi
if [ -d "$INIT_BASE_DIR/rc3.d" ]; then
rm -f $INIT_BASE_DIR/rc3.d/S88lsws
rm -f $INIT_BASE_DIR/rc3.d/K12lsws
fi
if [ -d "$INIT_BASE_DIR/rc5.d" ]; then
rm -f $INIT_BASE_DIR/rc5.d/S88lsws
rm -f $INIT_BASE_DIR/rc5.d/K12lsws
fi
if [ -d "$INIT_BASE_DIR/rc0.d" ]; then
rm -f $INIT_BASE_DIR/rc0.d/K12lsws
fi
if [ -d "$INIT_BASE_DIR/rc1.d" ]; then
rm -f $INIT_BASE_DIR/rc1.d/K12lsws
fi
if [ -d "$INIT_BASE_DIR/rc6.d" ]; then
rm -f $INIT_BASE_DIR/rc6.d/K12lsws
fi
echo "[OK] The startup script has been successfully uninstalled!"