Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.217.117
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
rc0.d /
Delete
Unzip
Name
Size
Permission
Date
Action
K01apache-htcacheclean
2.43
KB
-rwxr-xr-x
2024-09-28 08:35
K01apache2
7.95
KB
-rwxr-xr-x
2024-09-29 18:51
K01exim4
7
KB
-rwxr-xr-x
2025-03-21 14:34
K01haveged
2.31
KB
-rwxr-xr-x
2021-01-13 23:56
K01hwclock.sh
1.71
KB
-rwxr-xr-x
2024-11-21 20:01
K01memcached
3.4
KB
-rwxr-xr-x
2023-01-12 00:02
K01nfs-common
5.53
KB
-rwxr-xr-x
2024-12-11 14:00
K01nfs-kernel-server
4.67
KB
-rwxr-xr-x
2024-12-11 14:00
K01php7.2-fpm
4.19
KB
-rwxr-xr-x
2025-03-11 13:05
K01php7.4-fpm
4.19
KB
-rwxr-xr-x
2025-05-10 04:38
K01php8.1-fpm
4.19
KB
-rwxr-xr-x
2025-03-13 18:12
K01php8.4-fpm
4.19
KB
-rwxr-xr-x
2025-05-09 07:02
K01rpcbind
2.45
KB
-rwxr-xr-x
2022-07-27 09:20
K01udev
6.71
KB
-rwxr-xr-x
2025-03-06 14:56
K01unattended-upgrades
1.36
KB
-rwxr-xr-x
2022-12-31 20:59
K01uuidd
1.28
KB
-rwxr-xr-x
2024-11-21 20:01
Save
Rename
#! /bin/sh # ### BEGIN INIT INFO # Required-Start: $local_fs $remote_fs # Required-Stop: $local_fs $remote_fs # Provides: unattended-upgrade-shutdown-check # Default-Start: 2 3 4 5 # Default-Stop: 0 6 # Short-Description: Check if unattended upgrades are being applied # Description: Check if unattended upgrades are being applied # and wait for them to finish ### END INIT INFO set -e PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin NAME="unattended-upgrades-shutdown" DESC="unattended package upgrades shutdown" SCRIPTNAME="/etc/init.d/$NAME" SHUTDOWN_HELPER="/usr/share/unattended-upgrades/unattended-upgrade-shutdown" if [ -x /usr/bin/python3 ]; then PYTHON=python3 else PYTHON=python fi # Load the VERBOSE setting and other rcS variables . /lib/init/vars.sh # Define LSB log_* functions. # Depend on lsb-base (>= 3.2-14) to ensure that this file is present . /lib/lsb/init-functions case "$1" in start|restart|force-reload|status) # nothing, just to keep update-rc.d happy (see debian #630732) ;; stop) if [ -e $SHUTDOWN_HELPER ]; then [ "$VERBOSE" != "no" ] && log_action_begin_msg "Checking for running $DESC" $PYTHON $SHUTDOWN_HELPER [ "$VERBOSE" != "no" ] && log_action_end_msg $? "$NAME" fi ;; *) echo "Usage: $SCRIPTNAME {start|stop|status|restart|force-reload}" >&2 exit 3 ;; esac :