Linux evo.fastest-server.com 5.14.0-284.1101.el9.tuxcare.11.els11.x86_64 #1 SMP PREEMPT_DYNAMIC Fri Aug 14 13:30:35 UTC 2026 x86_64
LiteSpeed
Server IP : 103.249.112.113 & Your IP : 216.73.217.135
Domains : 988 Domain
User : tanishks
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
NetworkManager /
dispatcher.d /
Delete
Unzip
Name
Size
Permission
Date
Action
no-wait.d
[ DIR ]
drwxr-xr-x
2026-08-24 11:56
pre-down.d
[ DIR ]
drwxr-xr-x
2026-08-24 11:56
pre-up.d
[ DIR ]
drwxr-xr-x
2026-08-24 11:56
11-dhclient
1.04
KB
-rwxr-xr-x
2026-04-09 00:58
20-chrony-dhcp
1.61
KB
-rwxr-xr-x
2026-04-09 00:49
20-chrony-onoffline
791
B
-rwxr-xr-x
2025-08-27 12:05
Save
Rename
#!/usr/bin/sh # This is a NetworkManager dispatcher / networkd-dispatcher script for # chronyd to set its NTP sources online or offline when a network interface # is configured or removed export LC_ALL=C chronyc=/usr/bin/chronyc # For NetworkManager consider only selected events if [ $# -ge 2 ]; then case "$2" in up|down|connectivity-change) ;; dhcp4-change|dhcp6-change) # Actions "up" and "connectivity-change" in some cases do not # guarantee that the interface has a route (e.g. a bond). # dhcp(x)-change handles at least cases that use DHCP. ;; *) exit 0;; esac fi # Note: for networkd-dispatcher routable.d ~= on and off.d ~= off $chronyc onoffline > /dev/null 2>&1 exit 0