2018-07-10 17:11:43 +00:00
|
|
|
#!/bin/bash
|
2018-12-01 01:09:53 +00:00
|
|
|
if [[ -x @@LIBEXECDIR@@/grubby ]] ; then
|
2018-07-10 17:11:43 +00:00
|
|
|
exec @@LIBEXECDIR@@/grubby "${@}"
|
2018-12-01 01:09:53 +00:00
|
|
|
elif [[ -x @@LIBEXECDIR@@/grubby-bls ]] ; then
|
|
|
|
exec @@LIBEXECDIR@@/grubby-bls "${@}"
|
2018-07-10 17:11:43 +00:00
|
|
|
fi
|
|
|
|
echo "Grubby is not installed correctly." >>/dev/stderr
|
|
|
|
exit 1
|