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 /
init /
Delete
Unzip
Name
Size
Permission
Date
Action
apparmor.conf
3.62
KB
-rw-r--r--
2017-03-03 22:52
cgmanager.conf
1.27
KB
-rw-r--r--
2015-09-14 22:15
cgproxy.conf
956
B
-rw-r--r--
2015-09-14 22:15
cloud-config.conf
236
B
-rw-r--r--
2021-03-19 14:37
cloud-final.conf
297
B
-rw-r--r--
2021-03-19 14:37
cloud-init-blocknet.conf
2.5
KB
-rw-r--r--
2021-03-19 14:37
cloud-init-container.conf
1.98
KB
-rw-r--r--
2021-03-19 14:37
cloud-init-local.conf
379
B
-rw-r--r--
2021-03-19 14:37
cloud-init-nonet.conf
1.86
KB
-rw-r--r--
2021-03-19 14:37
cloud-init.conf
202
B
-rw-r--r--
2021-03-19 14:37
cloud-log-shutdown.conf
562
B
-rw-r--r--
2021-03-19 14:37
console-font.conf
250
B
-rw-r--r--
2016-04-04 17:41
console-setup.conf
509
B
-rw-r--r--
2016-04-04 17:41
cron.conf
297
B
-rw-r--r--
2022-05-10 22:15
dbus.conf
482
B
-rw-r--r--
2019-10-07 11:29
hostname.conf
284
B
-rw-r--r--
2013-07-23 09:25
hostname.sh.conf
300
B
-rw-r--r--
2014-05-21 14:59
hwclock-save.conf
561
B
-rw-r--r--
2016-03-14 09:08
hwclock.conf
674
B
-rw-r--r--
2016-03-14 09:08
hwclock.sh.conf
109
B
-rw-r--r--
2016-03-14 09:08
kmod.conf
689
B
-rw-r--r--
2018-11-12 21:55
network-interface-container.conf
530
B
-rw-r--r--
2016-11-30 17:15
network-interface-security.conf
1.71
KB
-rw-r--r--
2016-11-30 17:15
network-interface.conf
933
B
-rw-r--r--
2016-11-30 17:15
networking.conf
2.43
KB
-rw-r--r--
2016-11-30 17:15
passwd.conf
568
B
-rw-r--r--
2016-02-01 20:35
procps-instance.conf
363
B
-rw-r--r--
2014-06-05 14:27
procps.conf
119
B
-rw-r--r--
2014-06-05 15:06
resolvconf.conf
457
B
-rw-r--r--
2017-11-29 18:26
rfkill-restore.conf
365
B
-rw-r--r--
2014-11-03 06:54
rfkill-store.conf
357
B
-rw-r--r--
2014-11-03 06:52
rsyslog.conf
426
B
-rw-r--r--
2015-12-02 16:23
setvtrgb.conf
230
B
-rw-r--r--
2016-04-04 17:41
ssh.conf
641
B
-rw-r--r--
2020-05-13 14:12
ubuntu-fan.conf
239
B
-rw-r--r--
2016-10-28 15:24
udev.conf
337
B
-rw-r--r--
2021-04-02 02:39
udevmonitor.conf
360
B
-rw-r--r--
2021-04-02 02:39
udevtrigger.conf
352
B
-rw-r--r--
2021-04-02 02:39
Save
Rename
# cloud-init-no-net # the purpose of this job is # * to block running of cloud-init until all network interfaces # configured in /etc/network/interfaces are up # * timeout if they all do not come up in a reasonable amount of time start on mounted MOUNTPOINT=/ and stopped cloud-init-local stop on static-network-up task console output script set +e # you cannot trap TERM reliably with 'set -e' SLEEP_CHILD="" static_network_up() { local emitted="/run/network/static-network-up-emitted" # /run/network/static-network-up-emitted is written by # upstart (via /etc/network/if-up.d/upstart). its presense would # indicate that static-network-up has already fired. [ -e "$emitted" -o -e "/var/$emitted" ] } msg() { local uptime="" idle="" if [ -r /proc/uptime ]; then read uptime idle < /proc/uptime fi echo "$UPSTART_JOB${uptime:+[${uptime}]}:" "$1" } handle_sigterm() { # if we received sigterm and static networking is up then it probably # came from upstart as a result of 'stop on static-network-up' if [ -n "$SLEEP_CHILD" ]; then if ! kill $SLEEP_CHILD 2>/dev/null; then [ ! -d "/proc/$SLEEP_CHILD" ] || msg "hm.. failed to kill sleep pid $SLEEP_CHILD" fi fi if static_network_up; then msg "static networking is now up" exit 0 fi msg "recieved SIGTERM, networking not up" exit 2 } dowait() { [ $# -eq 2 ] || msg "waiting $1 seconds for network device" sleep "$1" & SLEEP_CHILD=$! wait $SLEEP_CHILD SLEEP_CHILD="" } trap handle_sigterm TERM # static_network_up already occurred static_network_up && exit 0 dowait 5 silent dowait 10 dowait 115 msg "gave up waiting for a network device." : > /var/lib/cloud/data/no-net end script