Linux s17.hosterpk.com 6.12.0-124.55.3.el10_1.x86_64 #1 SMP PREEMPT_DYNAMIC Thu May 7 16:54:02 EDT 2026 x86_64
LiteSpeed
Server IP : 192.169.89.90 & Your IP : 216.73.217.173
Domains :
Cant Read [ /etc/named.conf ]
User : hamzalar
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
dracut /
modules.d /
01systemd-networkd /
Delete
Unzip
Name
Size
Permission
Date
Action
99-default.network
131
B
-rw-r--r--
2025-05-01 10:52
99-wait-online-dracut.conf
153
B
-rw-r--r--
2025-05-01 10:52
module-setup.sh
3.83
KB
-rwxr-xr-x
2025-05-01 10:52
networkd-config.sh
1
KB
-rwxr-xr-x
2025-05-01 10:52
networkd-run.sh
943
B
-rwxr-xr-x
2025-05-01 10:52
Save
Rename
#!/usr/bin/bash command -v source_hook > /dev/null || . /lib/dracut-lib.sh for ifpath in /sys/class/net/*; do ifname="${ifpath##*/}" # shellcheck disable=SC2015 [ "$ifname" != "lo" ] && [ -e "$ifpath" ] && [ ! -e /tmp/networkd."$ifname".done ] || continue if /usr/lib/systemd/systemd-networkd-wait-online --timeout=0.000001 --interface="$ifname" 2> /dev/null; then leases_file="/run/systemd/netif/leases/$(cat "$ifpath"/ifindex)" dhcpopts_file="/tmp/dhclient.${ifname}.dhcpopts" if [ -r "$leases_file" ]; then grep -E "^(NEXT_SERVER|ROOT_PATH)=" "$leases_file" \ | sed -e "s/NEXT_SERVER=/new_next_server='/" \ -e "s/ROOT_PATH=/new_root_path='/" \ -e "s/$/'/" > "$dhcpopts_file" || true fi source_hook initqueue/online "$ifname" /sbin/netroot "$ifname" : > /tmp/networkd."$ifname".done fi done