9 lines
240 B
Plaintext
9 lines
240 B
Plaintext
|
#!/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
|