[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
lib
/
kernel
/
install.d
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📄 20-grub.install
7,457 B
SET
[ EDIT ]
|
[ DEL ]
📄 20-grubby.install
2,252 B
SET
[ EDIT ]
|
[ DEL ]
📄 50-depmod.install
368 B
SET
[ EDIT ]
|
[ DEL ]
📄 50-dracut.install
1,657 B
SET
[ EDIT ]
|
[ DEL ]
📄 51-dracut-rescue.install
3,700 B
SET
[ EDIT ]
|
[ DEL ]
📄 60-kdump.install
791 B
SET
[ EDIT ]
|
[ DEL ]
📄 90-loaderentry.install
1,975 B
SET
[ EDIT ]
|
[ DEL ]
📄 92-tuned.install
1,400 B
SET
[ EDIT ]
|
[ DEL ]
📄 99-grub-mkconfig.install
1,085 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: 60-kdump.install
#!/usr/bin/bash COMMAND="$1" KERNEL_VERSION="$2" KDUMP_INITRD_DIR_ABS="$3" KERNEL_IMAGE="$4" if ! [[ ${KERNEL_INSTALL_MACHINE_ID-x} ]]; then exit 0 fi if [[ -d "$KDUMP_INITRD_DIR_ABS" ]]; then KDUMP_INITRD="initrdkdump" else # If `KDUMP_BOOTDIR` is not writable, then the kdump # initrd must have been placed at `/var/lib/kdump` if [[ ! -w "/boot" ]]; then KDUMP_INITRD_DIR_ABS="/var/lib/kdump" else KDUMP_INITRD_DIR_ABS="/boot" fi KDUMP_INITRD="initramfs-${KERNEL_VERSION}kdump.img" fi ret=0 case "$COMMAND" in add) # Do nothing, kdump initramfs is strictly host only # and managed by kdump service ;; remove) rm -f -- "$KDUMP_INITRD_DIR_ABS/$KDUMP_INITRD" ret=$? ;; esac exit $ret