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 /
kernel /
install.d /
Delete
Unzip
Name
Size
Permission
Date
Action
10-devicetree.install
1.94
KB
-rwxr-xr-x
2025-12-02 00:00
20-grub.install
9.21
KB
-rwxr-xr-x
2026-04-20 00:00
50-depmod.install
2.33
KB
-rwxr-xr-x
2026-05-20 00:00
50-dracut.install
4.49
KB
-rwxr-xr-x
2026-01-30 00:00
51-dracut-rescue.install
4.85
KB
-rwxr-xr-x
2026-01-30 00:00
60-kdump.install
1.24
KB
-rwxr-xr-x
2026-02-02 00:00
90-loaderentry.install
7.88
KB
-rwxr-xr-x
2026-05-20 00:00
90-uki-copy.install
3.71
KB
-rwxr-xr-x
2026-05-20 00:00
92-crashkernel.install
204
B
-rwxr-xr-x
2026-02-02 00:00
92-tuned.install
1.62
KB
-rwxr-xr-x
2026-02-22 00:00
95-kernel-hooks.install
675
B
-rwxr-xr-x
2025-12-02 00:00
99-grub-mkconfig.install
2.15
KB
-rwxr-xr-x
2026-04-20 00:00
Save
Rename
#!/usr/bin/bash if ! [[ $KERNEL_INSTALL_MACHINE_ID ]]; then exit 0 fi # Run grub2-mkconfig if ENABLE_BLSCFG is false if grep -s -q '^GRUB_ENABLE_BLSCFG="*false"*\s*$' /etc/default/grub; then RUN_MKCONFIG=true DISABLE_BLS=true fi # PV and PVH Xen DomU guests boot with pygrub that doesn't have BLS support, # also Xen Dom0 use the menuentries from 20_linux_xen and not the ones from # 10_linux. So BLS support needs to be disabled for both Xen Dom0 and DomU. if [[ -e /sys/hypervisor/type ]] && grep -q "^xen$" /sys/hypervisor/type; then if [ ! -e /sys/hypervisor/guest_type ] || ! grep -q "^HVM$" /sys/hypervisor/guest_type; then RUN_MKCONFIG=true DISABLE_BLS=true fi fi ARCH=$(uname -m) # Older ppc64le OPAL firmware (petitboot version < 1.8.0) don't have BLS support # so grub2-mkconfig has to be run to generate a config with menuentry commands. if [[ $ARCH = "ppc64le" ]] && [ -d /sys/firmware/opal ]; then petitboot_path="/sys/firmware/devicetree/base/ibm,firmware-versions/petitboot" if test -e ${petitboot_path}; then read -r -d '' petitboot_version < ${petitboot_path} petitboot_version="$(echo ${petitboot_version//v})" major_version="$(echo ${petitboot_version} | cut -d . -f1)" minor_version="$(echo ${petitboot_version} | cut -d . -f2)" if test -z ${petitboot_version} || test ${major_version} -lt 1 || \ test ${major_version} -eq 1 -a ${minor_version} -lt 8; then RUN_MKCONFIG=true fi else RUN_MKCONFIG=true fi fi if [[ $DISABLE_BLS = "true" ]]; then if grep -q '^GRUB_ENABLE_BLSCFG="*true"*\s*$' /etc/default/grub; then sed -i 's/^GRUB_ENABLE_BLSCFG=.*/GRUB_ENABLE_BLSCFG=false/' /etc/default/grub fi fi # A traditional grub configuration file needs to be generated only in the case when # the bootloaders are not capable of populating a menu entry from the BLS fragments. if [[ $RUN_MKCONFIG != "true" ]]; then exit 0 fi [[ -f /etc/default/grub ]] && . /etc/default/grub COMMAND="$1" case "$COMMAND" in add|remove) grub2-mkconfig --no-grubenv-update -o /boot/grub2/grub.cfg >& /dev/null ;; *) ;; esac