Linux ih01.iridiumhosting.com 5.14.0-611.5.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Tue Nov 11 08:09:09 EST 2025 x86_64
LiteSpeed
Server IP : 67.227.241.211 & Your IP : 216.73.216.226
Domains :
Cant Read [ /etc/named.conf ]
User : dustinhy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
opt /
MXB /
rear /
usr /
share /
rear /
finalize /
GNU /
Linux /
Delete
Unzip
Name
Size
Permission
Date
Action
230_remove_lvmdevices.sh
1019
B
-rw-r--r--
2026-04-01 09:39
240_reassign_luks_keyfiles.sh
2.45
KB
-rw-r--r--
2026-04-01 09:39
250_migrate_disk_devices_layout.sh
4.92
KB
-rw-r--r--
2026-04-01 09:39
250_migrate_lun_wwid.sh
3.54
KB
-rw-r--r--
2026-04-01 09:39
260_rename_diskbyid.sh
7.39
KB
-rw-r--r--
2026-04-01 09:39
280_migrate_uuid_tags.sh
3.4
KB
-rw-r--r--
2026-04-01 09:39
300_create_mac_mapping.sh
846
B
-rw-r--r--
2026-04-01 09:39
310_migrate_udev_rules.sh
2.78
KB
-rw-r--r--
2026-04-01 09:39
320_migrate_network_configuration_files.sh
33.93
KB
-rw-r--r--
2026-04-01 09:39
430_create_multipath_config.sh
1.55
KB
-rw-r--r--
2026-04-01 09:39
Save
Rename
# we will create a $CONFIG_DIR/mappings/mac file if needed # because the bash option nullglob is set in rear (see usr/sbin/rear) # PATCH_FILES is empty if nothing matches $TARGET_FS_ROOT/etc/sysconfig/*/ifcfg-* PATCH_FILES=( $TARGET_FS_ROOT/etc/sysconfig/*/ifcfg-* ) # skip if no network configuration files are found test $PATCH_FILES || return 0 # if a "mac" is found no need to create one [[ -f $CONFIG_DIR/mappings/mac ]] && return 0 for file in "${PATCH_FILES[@]}"; do grep -q HWADDR $file || continue dev=$(echo $file | cut -d- -f3) old_mac=$(grep HWADDR $file | cut -d= -f2) new_mac=$(cat /sys/class/net/$dev/address) [[ -z "$new_mac" ]] && continue [[ "$(echo $old_mac | sed -e 'y/abcdef/ABCDEF/')" = "$(echo $new_mac | sed -e 'y/abcdef/ABCDEF/')" ]] && continue echo "$old_mac $new_mac $dev" >> $CONFIG_DIR/mappings/mac done