diff --git a/SOURCES/firstboot_kdump.py b/SOURCES/firstboot_kdump.py
old mode 100755
new mode 100644
index e802884..a8cd3ba
--- a/SOURCES/firstboot_kdump.py
+++ b/SOURCES/firstboot_kdump.py
@@ -57,11 +57,9 @@ class moduleClass(Module):
 	# possible bootloaders we'll need to adjust
 	#			 bootloader : (config file, kdump offset)
 	bootloaders = { "grub"   : (["/boot/grub/grub.conf", \
-				"/boot/efi/EFI/redhat/grub.conf", \
 				"/boot/efi/EFI/centos/grub.conf"], [16, 256]),\
 			"grub2"   : (["/boot/grub2/grub.cfg", \
 				"/boot/efi/EFI/fedora/grub.cfg", \
-				"/boot/efi/EFI/redhat/grub.cfg", \
 				"/boot/efi/EFI/centos/grub.cfg"], [16, 256]),\
 			"zipl" : (["/etc/zipl.conf"], [0]),\
 			"yaboot" : (["/boot/etc/yaboot.conf"], [32]) }