mirror of
https://src.fedoraproject.org/rpms/grub2.git
synced 2024-11-28 07:44:52 +00:00
2d1140eb96
Signed-off-by: Javier Martinez Canillas <javierm@redhat.com>
8 lines
275 B
Bash
8 lines
275 B
Bash
#!/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
|