In this case it does not hurt to increase bash execution verbosity so we can get more insight in case of issues. Signed-off-by: Leo Sandoval <lsandova@redhat.com> Reviewed-by: Daniel Kiper <daniel.kiper@oracle.com>
31 lines
768 B
Plaintext
31 lines
768 B
Plaintext
#! @BUILD_SHEBANG@
|
|
set -ex
|
|
|
|
. "@builddir@/grub-core/modinfo.sh"
|
|
|
|
# FIXME: OpenBIOS on sparc64 doesn't implement RTC
|
|
if [ "${grub_modinfo_target_cpu}-${grub_modinfo_platform}" = sparc64-ieee1275 ]; then
|
|
exit 77
|
|
fi
|
|
|
|
pdt="$(date -u +%s)"
|
|
dt="$(echo date | @builddir@/grub-shell)"
|
|
dt="$(echo "$dt" | sed 's, [A-Z][a-z]*$,,')"
|
|
dtg="$(date -u -d "$dt" +%s)"
|
|
ndt="$(date -u +%s)"
|
|
|
|
if [ $pdt -gt $dtg ] || [ $dtg -gt $ndt ]; then
|
|
echo "Date not in range: $pdt <= $dtg <= $ndt"
|
|
exit 1
|
|
fi
|
|
|
|
pdt="$(date -u +%s)"
|
|
dt=`echo 'insmod datehook; echo $YEAR-$MONTH-$DAY $HOUR:$MINUTE:$SECOND' | @builddir@/grub-shell`
|
|
dtg="$(date -u -d "$dt" +%s)"
|
|
ndt="$(date -u +%s)"
|
|
|
|
if [ $pdt -gt $dtg ] || [ $dtg -gt $ndt ]; then
|
|
echo "Date not in range: $pdt <= $dtg <= $ndt"
|
|
exit 1
|
|
fi
|