From 177691df09ec3379dfdf3980aeaa6f21e39d94b6 Mon Sep 17 00:00:00 2001 From: Laura Abbott Date: Mon, 13 Mar 2017 09:38:44 -0700 Subject: 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. --- scripts/rawhide-rc.sh | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'scripts') diff --git a/scripts/rawhide-rc.sh b/scripts/rawhide-rc.sh index 51a3b09f2..5982403e7 100755 --- a/scripts/rawhide-rc.sh +++ b/scripts/rawhide-rc.sh @@ -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 -- cgit