dce08ec4e3
The content of this branch was automatically imported from Fedora ELN with the following as its source: https://src.fedoraproject.org/rpms/grubby#1ead121a0843cccac82a61cbf2ec8024988297a6
9 lines
275 B
Bash
9 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
|