Linux sagir-us1.hostever.us 5.14.0-570.51.1.el9_6.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Oct 8 09:41:34 EDT 2025 x86_64
LiteSpeed
Server IP : 104.247.108.91 & Your IP : 216.73.216.105
Domains : 74 Domain
User : georgeto
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
kernel /
install.d /
Delete
Unzip
Name
Size
Permission
Date
Action
10-devicetree.install
1.92
KB
-rwxr-xr-x
2025-11-11 09:57
20-grub.install
8.1
KB
-rwxr-xr-x
2026-03-19 08:28
20-grubby.install
1.86
KB
-rwxr-xr-x
2026-04-07 19:12
50-depmod.install
2.24
KB
-rwxr-xr-x
2026-04-07 19:11
50-dracut.install
1.85
KB
-rwxr-xr-x
2025-12-17 17:48
51-dracut-rescue.install
3.79
KB
-rwxr-xr-x
2025-12-17 17:48
60-kdump.install
791
B
-rwxr-xr-x
2025-09-24 06:15
90-loaderentry.install
5.77
KB
-rwxr-xr-x
2026-04-07 19:11
90-uki-copy.install
3.31
KB
-rwxr-xr-x
2026-04-07 19:11
92-crashkernel.install
204
B
-rwxr-xr-x
2025-09-24 06:15
95-kernel-hooks.install
675
B
-rwxr-xr-x
2025-11-11 09:57
99-grub-mkconfig.install
1.02
KB
-rwxr-xr-x
2026-03-19 08:28
Save
Rename
#!/usr/bin/bash if ! [[ $KERNEL_INSTALL_MACHINE_ID ]]; then exit 0 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 RUN_MKCONFIG=true 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 [ -f /etc/default/grub ] && . /etc/default/grub if [ x$GRUB_ENABLE_BLSCFG = xfalse ]; then RUN_MKCONFIG=true 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 COMMAND="$1" case "$COMMAND" in add|remove) grub2-mkconfig --no-grubenv-update -o /boot/grub2/grub.cfg >& /dev/null ;; *) ;; esac