87beb89e75
We need to cary this in f29 until we have the anaconda patches in and get grubby out of the default install, so we'll have BLS configs and not need grubby to update them. Signed-off-by: Peter Jones <pjones@redhat.com>
9 lines
240 B
Bash
9 lines
240 B
Bash
#!/bin/bash
|
|
if [[ -x @@LIBEXECDIR@@/grubby-bls ]] ; then
|
|
exec @@LIBEXECDIR@@/grubby-bls "${@}"
|
|
elif [[ -x @@LIBEXECDIR@@/grubby ]] ; then
|
|
exec @@LIBEXECDIR@@/grubby "${@}"
|
|
fi
|
|
echo "Grubby is not installed correctly." >>/dev/stderr
|
|
exit 1
|