Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
local /
webuzo /
conf /
webuzo /
emps /
Delete
Unzip
Name
Size
Permission
Date
Action
php-fpm.w
[ DIR ]
drwxr-xr-x
2025-02-25 06:02
admin_locations_backuply.conf
321
B
-rw-r--r--
2026-03-12 07:13
admin_locations_csf.conf
299
B
-rw-r--r--
2022-01-31 06:42
admin_locations_softaculous.conf
331
B
-rwxr-xr-x
2026-04-22 09:09
admin_port.conf
30
B
-rw-r--r--
2025-02-25 04:16
admin_proxy_security.conf
123
B
-rw-r--r--
2026-04-27 06:00
ca-certificates.pem
194.69
KB
-rw-r--r--
2026-04-16 10:32
emps
4.46
KB
-rwxr-xr-x
2026-04-16 10:32
emps_logrotate
453
B
-rw-r--r--
2026-04-16 10:32
enduser_locations_backuply.conf
323
B
-rw-r--r--
2026-03-12 07:13
enduser_locations_softaculous.conf
333
B
-rwxr-xr-x
2026-04-22 09:09
enduser_port.conf
30
B
-rw-r--r--
2025-02-25 04:16
fastcgi_params
1.16
KB
-rw-r--r--
2026-04-16 10:32
gzip.conf
272
B
-rw-r--r--
2026-04-16 10:32
nginx.conf
4.65
KB
-rw-r--r--
2026-04-16 10:32
php-fpm.conf
1.54
KB
-rw-r--r--
2026-04-16 10:32
php.ini
68.43
KB
-rw-r--r--
2026-04-16 10:32
proxy_security.conf
123
B
-rw-r--r--
2026-04-27 06:00
ttyd.conf
513
B
-rw-r--r--
2026-04-16 10:32
user_domains.conf
71.98
KB
-rw-r--r--
2026-04-27 06:00
webuzo-onboot
1.98
KB
-rwxr-xr-x
2026-04-16 10:32
webuzo-onboot.service
285
B
-rw-r--r--
2026-04-16 10:32
webuzo.service
268
B
-rw-r--r--
2026-04-16 10:32
Save
Rename
#!/bin/bash # ### BEGIN INIT INFO # Provides: webuzo-onboot # Required-Start: $local_fs $remote_fs $network $syslog $named # Required-Stop: $local_fs $remote_fs $network $syslog $named # Should-Start: $network $time # Should-Stop: $network $time # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Webuzo is a Control Panel. # Description: Webuzo is a LAMP Stack and a Single User Control Panel which helps you deploy Apps on your server. "webuzo". ### END INIT INFO # (c) Softaculous Ltd. # Service for WEBUZO ONBOOT # # chkconfig: 2345 99 90 # description: Webuzo is a LAMP Stack and a Single User Control Panel \ # which helps you deploy Apps on your server, \ # virtual machine or in the cloud. # # processname: webuzo # config: /usr/local/emps/etc # RETVAL=0 # See how we were called. case "$1" in start) # Create a hardlink for the Webuzo Onboot Service file if [ -f /usr/bin/systemctl ] || [ -f /bin/systemctl ] ; then if [ ! -f /etc/systemd/system/webuzo-onboot.service ] ; then echo "Creating webuzo-onboot.service file for systemd" echo "Creating webuzo-onboot.service file for systemd" > /var/webuzo/onboot-service ln /usr/local/webuzo/conf/webuzo/emps/webuzo-onboot.service /etc/systemd/system/webuzo-onboot.service # Enable the service as well systemctl enable webuzo-onboot fi fi # Execute the script to add IPs webuzo --add_all_ips 2>&1 > /dev/null & webuzo --onboot touch /var/run/webuzo-onboot-success echo "DONE ! Onboot Scripts" >> /var/webuzo/onboot-service ;; stop) echo "Stop not implemented. In order to revert the changes execute service network restart" ;; status) if [ -f /var/run/webuzo-onboot-success ] ; then echo "Onboot script executed successfully" else echo "Onboot script not executed yet. It executes after reboot." fi ;; restart|reload) cd "$CWD" $0 stop $0 start ;; *) echo $"Usage: $0 {start|stop|restart|status}" RETVAL=2 esac exit $RETVAL