Linux vps-61133.fhnet.fr 4.9.0-19-amd64 #1 SMP Debian 4.9.320-2 (2022-06-30) x86_64
Apache/2.4.25 (Debian)
Server IP : 93.113.207.21 & Your IP : 216.73.216.173
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
rc1.d /
Delete
Unzip
Name
Size
Permission
Date
Action
K01apache-htcacheclean
2.43
KB
-rwxr-xr-x
2019-06-16 11:49
K01apache2
7.99
KB
-rwxr-xr-x
2019-06-16 11:49
K01bacula-fd
2.63
KB
-rwxr-xr-x
2018-03-04 12:49
K01clamav-freshclam
7.51
KB
-rwxr-xr-x
2022-05-27 11:18
K01exim4
6.6
KB
-rwxr-xr-x
2018-02-10 09:26
K01fail2ban
6.54
KB
-rwxr-xr-x
2017-04-17 16:27
K01irqbalance
2.39
KB
-rwxr-xr-x
2016-12-30 19:59
K01mdadm
2.59
KB
-rwxr-xr-x
2016-07-26 17:41
K01memcached
3.38
KB
-rwxr-xr-x
2018-06-03 11:37
K01netfilter-persistent
1.33
KB
-rwxr-xr-x
2020-05-02 21:33
K01openbsd-inetd
2.39
KB
-rwxr-xr-x
2016-12-26 15:10
K01postfix
3.54
KB
-rwxr-xr-x
2020-02-16 20:53
K01pure-ftpd
2.97
KB
-rwxr-xr-x
2016-12-08 13:28
K01pure-ftpd-mysql
2.98
KB
-rwxr-xr-x
2016-12-08 13:28
K01smartmontools
3.42
KB
-rwxr-xr-x
2016-07-30 19:10
K01snmpd
2.52
KB
-rwxr-xr-x
2018-10-09 10:45
K02clamav-daemon
9.34
KB
-rwxr-xr-x
2022-05-27 11:18
K02dovecot
5.12
KB
-rwxr-xr-x
2020-08-14 18:28
K02nginx
4.47
KB
-rwxr-xr-x
2021-06-07 21:02
K02ufw
2.03
KB
-rwxr-xr-x
2017-01-10 22:16
K03mysql
5.79
KB
-rwxr-xr-x
2020-10-12 19:40
K04bind9
3.35
KB
-rwxr-xr-x
2018-01-15 22:40
K05rsyslog
2.8
KB
-rwxr-xr-x
2017-01-18 23:14
README
369
B
-rw-r--r--
2017-02-12 22:55
Save
Rename
#!/bin/sh # kFreeBSD do not accept scripts as interpreters, using #!/bin/sh and sourcing. if [ true != "$INIT_D_SCRIPT_SOURCED" ] ; then set "$0" "$@"; INIT_D_SCRIPT_SOURCED=true . /lib/init/init-d-script fi ### BEGIN INIT INFO # Provides: apache-htcacheclean # Required-Start: $remote_fs $syslog # Required-Stop: $remote_fs $syslog # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Short-Description: Cache cleaner process for Apache2 web server # Description: Start the htcacheclean helper # This script will start htcacheclean which will periodically scan the # cache directory of Apache2's mod_cache_disk and remove outdated files. ### END INIT INFO DESC="Apache htcacheclean" DAEMON=/usr/bin/htcacheclean NAME="${0##*/}" NAME="${NAME##[KS][0-9][0-9]}" DIR_SUFFIX="${NAME##apache-htcacheclean}" APACHE_CONFDIR="${APACHE_CONFDIR:=/etc/apache2$DIR_SUFFIX}" RUN_USER=$(. $APACHE_CONFDIR/envvars > /dev/null && echo "$APACHE_RUN_USER") # Default values. Edit /etc/default/apache-htcacheclean$DIR_SUFFIX to change these HTCACHECLEAN_SIZE="${HTCACHECLEAN_SIZE:=300M}" HTCACHECLEAN_DAEMON_INTERVAL="${HTCACHECLEAN_DAEMON_INTERVAL:=120}" HTCACHECLEAN_PATH="${HTCACHECLEAN_PATH:=/var/cache/apache2$DIR_SUFFIX/mod_cache_disk}" HTCACHECLEAN_OPTIONS="${HTCACHECLEAN_OPTIONS:=-n}" # Read configuration variable file if it is present if [ -f /etc/default/apache-htcacheclean$DIR_SUFFIX ] ; then . /etc/default/apache-htcacheclean$DIR_SUFFIX elif [ -f /etc/default/apache-htcacheclean ] ; then . /etc/default/apache-htcacheclean fi PIDDIR="/var/run/apache2/$RUN_USER" PIDFILE="$PIDDIR/$NAME.pid" DAEMON_ARGS="$HTCACHECLEAN_OPTIONS \ -d$HTCACHECLEAN_DAEMON_INTERVAL \ -P$PIDFILE -i \ -p$HTCACHECLEAN_PATH \ -l$HTCACHECLEAN_SIZE" do_start_prepare () { if [ ! -d "$PIDDIR" ] ; then mkdir -p "$PIDDIR" chown "$RUN_USER:" "$PIDDIR" fi if [ ! -d "$HTCACHECLEAN_PATH" ] ; then echo "Directory $HTCACHECLEAN_PATH does not exist!" >&2 exit 2 fi } do_start_cmd_override () { start-stop-daemon --start --quiet --pidfile ${PIDFILE} \ -u $RUN_USER --startas $DAEMON --name htcacheclean --test > /dev/null \ || return 1 start-stop-daemon --start --quiet --pidfile ${PIDFILE} \ -c $RUN_USER --startas $DAEMON --name htcacheclean -- $DAEMON_ARGS \ || return 2 } do_stop_cmd_override () { start-stop-daemon --stop --quiet --retry=TERM/30/KILL/5 \ -u $RUN_USER --pidfile ${PIDFILE} --name htcacheclean }