Linux azu-front-29122023-s-1vcpu-2gb-sgp1-01 5.19.0-46-generic #47-Ubuntu SMP PREEMPT_DYNAMIC Fri Jun 16 13:30:11 UTC 2023 x86_64
nginx/1.22.0
Server IP : 188.166.228.183 & Your IP : 216.73.216.202
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
etc /
init.d /
Delete
Unzip
Name
Size
Permission
Date
Action
apparmor
3.65
KB
-rwxr-xr-x
2022-09-24 05:21
apport
2.85
KB
-rwxr-xr-x
2022-10-05 16:52
console-setup.sh
1.21
KB
-rwxr-xr-x
2022-08-25 16:25
cron
2.99
KB
-rwxr-xr-x
2021-03-18 07:14
cryptdisks
937
B
-rwxr-xr-x
2022-08-24 06:56
cryptdisks-early
896
B
-rwxr-xr-x
2022-08-24 06:56
dbus
3.08
KB
-rwxr-xr-x
2021-06-28 20:15
grub-common
985
B
-rwxr-xr-x
2022-09-19 22:00
hwclock.sh
1.71
KB
-rwxr-xr-x
2022-05-04 05:38
irqbalance
2.58
KB
-rwxr-xr-x
2021-10-30 18:55
iscsid
1.47
KB
-rwxr-xr-x
2022-07-31 05:16
keyboard-setup.sh
1.45
KB
-rwxr-xr-x
2022-07-18 20:25
kmod
2.01
KB
-rwxr-xr-x
2022-08-22 17:03
lvm2
695
B
-rwxr-xr-x
2022-08-23 04:35
lvm2-lvmpolld
586
B
-rwxr-xr-x
2022-08-23 04:35
multipath-tools
2.76
KB
-rwxr-xr-x
2022-02-19 00:16
mysql
5.48
KB
-rwxr-xr-x
2022-05-18 17:26
nginx
4.47
KB
-rwxr-xr-x
2022-07-23 08:47
open-iscsi
2.38
KB
-rwxr-xr-x
2022-07-31 05:16
open-vm-tools
1.8
KB
-rwxr-xr-x
2022-08-24 15:49
php8.1-fpm
4.19
KB
-rwxr-xr-x
2023-01-16 23:18
plymouth
1.35
KB
-rwxr-xr-x
2022-08-19 14:46
plymouth-log
760
B
-rwxr-xr-x
2022-08-19 14:46
procps
959
B
-rwxr-xr-x
2022-02-25 19:32
rsync
4.31
KB
-rwxr-xr-x
2022-08-16 18:03
screen-cleanup
1.19
KB
-rwxr-xr-x
2021-02-18 16:51
ssh
3.96
KB
-rwxr-xr-x
2022-04-09 21:14
udev
6.71
KB
-rwxr-xr-x
2022-10-11 23:51
ufw
2.03
KB
-rwxr-xr-x
2021-09-19 13:07
unattended-upgrades
1.36
KB
-rwxr-xr-x
2021-02-19 20:11
uuidd
1.28
KB
-rwxr-xr-x
2022-05-04 06:30
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 :