[24448] in Source-Commits
/svn/athena r24039 - trunk/debathena/config/ssh-server-config/debian
daemon@ATHENA.MIT.EDU (Evan Broder)
Thu Oct 1 18:22:47 2009
Date: Thu, 1 Oct 2009 18:22:36 -0400
From: Evan Broder <broder@MIT.EDU>
Message-Id: <200910012222.n91MMaR5022407@drugstore.mit.edu>
To: source-commits@mit.edu
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
Author: broder
Date: 2009-10-01 18:22:35 -0400 (Thu, 01 Oct 2009)
New Revision: 24039
Modified:
trunk/debathena/config/ssh-server-config/debian/10-bash-kerberos-credentials-warn
trunk/debathena/config/ssh-server-config/debian/10-csh-kerberos-credentials-warn
trunk/debathena/config/ssh-server-config/debian/changelog
Log:
In ssh-server-config:
* Put a blank line before and after any ticket/token warnings.
Modified: trunk/debathena/config/ssh-server-config/debian/10-bash-kerberos-credentials-warn
===================================================================
--- trunk/debathena/config/ssh-server-config/debian/10-bash-kerberos-credentials-warn 2009-10-01 21:50:26 UTC (rev 24038)
+++ trunk/debathena/config/ssh-server-config/debian/10-bash-kerberos-credentials-warn 2009-10-01 22:22:35 UTC (rev 24039)
@@ -18,13 +18,19 @@
fi
if [ -z "$tokens" ] && [ -z "$tickets" ] && [ ! -r ~/.bashrc ]; then
+ echo >&2
echo "WARNING: You have no valid Kerberos tickets and no valid AFS tokens." >&2
echo "See http://debathena.mit.edu/ssh" >&2
+ echo >&2
elif [ -z "$tokens" ] && [ ! -r ~/.bashrc ]; then
+ echo >&2
echo "WARNING: You have no valid AFS tokens." >&2
echo "See http://debathena.mit.edu/ssh" >&2
+ echo >&2
elif [ -z "$tickets" ]; then
+ echo >&2
echo "WARNING: You have no valid Kerberos tickets." >&2
echo "See http://debathena.mit.edu/ssh" >&2
+ echo >&2
fi
fi
Modified: trunk/debathena/config/ssh-server-config/debian/10-csh-kerberos-credentials-warn
===================================================================
--- trunk/debathena/config/ssh-server-config/debian/10-csh-kerberos-credentials-warn 2009-10-01 21:50:26 UTC (rev 24038)
+++ trunk/debathena/config/ssh-server-config/debian/10-csh-kerberos-credentials-warn 2009-10-01 22:22:35 UTC (rev 24039)
@@ -19,13 +19,19 @@
endif
if ("$tokens" != "yes" && "$tickets" != "yes" && ! -r ~/.cshrc) then
+ echo >/dev/stderr
echo "WARNING: You have no valid Kerberos tickets and no valid AFS tokens." >/dev/stderr
echo "See http://debathena.mit.edu/ssh" >/dev/stderr
+ echo >/dev/stderr
else if ("$tokens" != "yes" && ! -r ~/.cshrc) then
+ echo >/dev/stderr
echo "WARNING: You have no valid AFS tokens." >/dev/stderr
echo "See http://debathena.mit.edu/ssh" >/dev/stderr
+ echo >/dev/stderr
else if ("$tickets" != "yes") then
+ echo >/dev/stderr
echo "WARNING: You have no valid Kerberos tickets." >/dev/stderr
echo "See http://debathena.mit.edu/ssh" >/dev/stderr
+ echo >/dev/stderr
endif
endif
Modified: trunk/debathena/config/ssh-server-config/debian/changelog
===================================================================
--- trunk/debathena/config/ssh-server-config/debian/changelog 2009-10-01 21:50:26 UTC (rev 24038)
+++ trunk/debathena/config/ssh-server-config/debian/changelog 2009-10-01 22:22:35 UTC (rev 24039)
@@ -1,3 +1,9 @@
+debathena-ssh-server-config (1.7) unstable; urgency=low
+
+ * Put a blank line before and after any ticket/token warnings.
+
+ -- Evan Broder <broder@mit.edu> Thu, 01 Oct 2009 18:22:31 -0400
+
debathena-ssh-server-config (1.6) unstable; urgency=low
* Add a warning if a user logs in without tickets