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
/
etc /
rc.d /
init.d /
Delete
Unzip
Name
Size
Permission
Date
Action
README
1.13
KB
-rw-r--r--
2026-04-07 19:12
functions
17.79
KB
-rw-r--r--
2024-08-27 11:35
php-fpm56
2.38
KB
-rwxr-xr-x
2025-02-25 04:06
php-fpm70
2.38
KB
-rwxr-xr-x
2025-02-25 04:06
php-fpm71
2.38
KB
-rwxr-xr-x
2025-02-25 04:06
php-fpm72
2.38
KB
-rwxr-xr-x
2025-02-25 04:05
php-fpm73
2.38
KB
-rwxr-xr-x
2025-02-25 04:05
php-fpm74
2.38
KB
-rwxr-xr-x
2025-02-25 04:05
php-fpm80
2.38
KB
-rwxr-xr-x
2025-02-25 04:05
php-fpm81
2.38
KB
-rwxr-xr-x
2025-02-25 04:04
php-fpm82
2.38
KB
-rwxr-xr-x
2025-02-25 04:04
php-fpm83
2.38
KB
-rwxr-xr-x
2025-02-25 04:04
pure-ftpd
2.14
KB
-rwxr-xr-x
2025-02-25 04:06
webuzo
4.46
KB
-rwxr-xr-x
2026-04-16 10:32
webuzo-onboot
1.98
KB
-rwxr-xr-x
2026-04-16 10:32
Save
Rename
#!/bin/sh ### BEGIN INIT INFO # Provides: pure-ftpd # Required-Start: $local_fs $remote_fs $network $syslog # Required-Stop: $local_fs $remote_fs $network $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Start and Stop pure-ftpd Server # Description: Start and Stop pure-ftpd Server ### END INIT INFO RETVAL=0 prog="pure-ftpd" # Path to the pure-ftp binaries. fullpath=/usr/local/apps/pureftpd/sbin pureftpwho=/usr/local/apps/pureftpd/sbin/pure-ftpwho pure_config=/usr/local/apps/pureftpd/etc/pure-ftpd.conf pid_file=/var/run/pure-ftpd.pid pure_launch_script=/usr/local/apps/pureftpd/sbin/pure-config.pl lockfile=/var/lock/subsys/pure-ftpd start() { echo -n $"Starting $prog: " if [ ! -f $pid_file ] ; then perl $pure_launch_script $pure_config --daemonize > /dev/null RETVAL=$? if [ $? = 0 ]; then if [ -d /var/lock/subsys ] ; then touch $lockfile fi touch $pid_file echo "[ OK ]" fi else echo "$prog already running..." fi return 0 } stop() { echo -n $"Stopping $prog: " if [ -f $pid_file ] ; then PID=`cat $pid_file` kill $PID > /dev/null 2>&1 if [ -f $lockfile ] ; then rm -rf $lockfile fi sleep 1 rm -rf $pid_file echo "[ OK ]" else echo "$prog stopped" fi return 0 } # See how we were called. case "$1" in start) start ;; stop) stop ;; restart) stop start ;; condrestart) if [ -f /var/lock/subsys/pure-ftpd ] ; then stop # avoid race sleep 3 start fi ;; status) if [ -f $pid_file ] && [ -f $lockfile ] ; then PID=`cat $pid_file` echo "$prog (pid $PID) is running..." if [ -f $pureftpwho ] ; then $pureftpwho fi else echo "$prog stopped" fi ;; *) echo $"Usage: pure-ftpd {start|stop|restart|reload|condrestart|status}" RETVAL=1 esac exit $RETVAL