mirror of
https://src.fedoraproject.org/rpms/grub2.git
synced 2024-11-28 07:44:52 +00:00
9 lines
275 B
Text
9 lines
275 B
Text
|
#!/bin/bash
|
||
|
if [[ -x @@LIBEXECDIR@@/installkernel ]] ; then
|
||
|
exec @@LIBEXECDIR@@/installkernel "${@}"
|
||
|
elif [[ -x @@LIBEXECDIR@@/installkernel-bls ]] ; then
|
||
|
exec @@LIBEXECDIR@@/installkernel-bls "${@}"
|
||
|
fi
|
||
|
echo "installkernel is not installed correctly." >>/dev/stderr
|
||
|
exit 1
|