Add kerberos check to rawhide rc scripts
-rcs come out on Sunday night which means they get added to rawhide on Monday. How anyone remembers anything on a Monday morning is completely beyond me so add a hint to the rc script checking for Kerberos.
This commit is contained in:
parent
60ccee4c58
commit
177691df09
@ -3,6 +3,13 @@
|
||||
|
||||
source scripts/kernel-version.sh
|
||||
|
||||
klist -s
|
||||
if [ ! $? -eq 0 ]; then
|
||||
echo "klist couldn't read the credential cache."
|
||||
echo "Do you need to fix your kerberos tokens?"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
make release
|
||||
# fixup the release because rpmdev-bumpspec *sigh*
|
||||
scripts/fixup-bumpspec.sh
|
||||
|
Loading…
Reference in New Issue
Block a user