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 /
17284 /
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 - # # ubuntu-fan Start/Stop Ubuntu FAN Networking # # chkconfig: 345 98 01 # description: Starts/Stops Ubuntu FAN Network Bridge # ### BEGIN INIT INFO # Provides: ubuntu-fan # Default-Start: 2 3 4 5 # Default-Stop: 0 1 6 # Required-Start: $network $remote_fs # Required-Stop: $remote_fs $network # Short-Description: Bring up/down Ubuntu FAN Network Bridge and Overlay # Description: Bring up/down Ubuntu FAN Network Bridge and Overlay ### END INIT INFO # Source function library. . /lib/lsb/init-functions # provide action() fallback if ! type action >/dev/null 2>&1; then # Real basic fallback for sysvinit "action" verbage. action() { echo -n "$1 " shift "$@" && echo "OK" || echo "Failed" } fi start() { action $"Starting Ubuntu FAN network bridge: " /usr/lib/ubuntu-fan/fan-net start } stop() { action $"Stopping Ubuntu FAN network bridge: " /usr/lib/ubuntu-fan/fan-net stop } # See how we were called. case "$1" in start) start ;; stop) stop ;; restart|reload|force-reload) $0 stop $0 start ;; *) echo "Usage: $0 {start|stop|restart|reload|force-reload}" exit 2 ;; esac exit $?