|
Server : Apache System : Linux server.mata-lashes.com 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : matalashes ( 1004) PHP Version : 8.1.29 Disable Function : NONE Directory : /proc/17567/root/usr/src/lsws/lsws-6.3.4/admin/misc/ |
Upload File : |
#!/sbin/runscript
depend()
{
need net
use mysql dns netmount postgres
after sshd
}
start()
{
ebegin "Starting LiteSpeed Web Server"
"/usr/local/lsws/bin/lswsctrl" start 2>/dev/null 1>&2
eend $?
}
stop()
{
ebegin "Stopping LiteSped Web Server"
"/usr/local/lsws/bin/lswsctrl" stop 2>/dev/null 1>&2
eend $?
}
restart()
{
ebegin "Restarting LiteSpeed Web Server"
"/usr/local/lsws/bin/lswsctrl" restart 2>/dev/null 1>&2
eend $?
}