864fb123f8
Per discussion in kdump meetint, add crashkernel=auto to rhcrashkernel-param script for rhel7 for testing. Anaconda will call this script to add the cmdline instead of hardcode it. Signed-off-by: Dave Young <dyoung@redhat.com>
7 lines
100 B
Bash
7 lines
100 B
Bash
#!/bin/sh
|
|
if grep -q Fedora /etc/redhat-release; then
|
|
echo -n
|
|
else
|
|
echo crashkernel=auto
|
|
fi
|