aboutsummaryrefslogtreecommitdiff
path: root/.zshenv
diff options
context:
space:
mode:
authorRyan Kavanagh <rak@debian.org>2017-08-22 11:12:17 -0400
committerRyan Kavanagh <rak@debian.org>2017-08-22 11:13:54 -0400
commit04855847afecf638c71802468a8a0c4413517335 (patch)
treed3088a595a730e13357a0895ae03600dc83607e7 /.zshenv
parentAdded alpha to ssh config (diff)
Fix zshenv to have the right environment for when we call rkinits from cron
Diffstat (limited to '.zshenv')
-rw-r--r--.zshenv5
1 files changed, 3 insertions, 2 deletions
diff --git a/.zshenv b/.zshenv
index 8a55c57..49e85ad 100644
--- a/.zshenv
+++ b/.zshenv
@@ -1,11 +1,12 @@
aklogs () {
for r in CS.CMU.EDU ANDREW.CMU.EDU; do
- KRB5CCNAME=`klist -l | grep $r | sed -e s'/.*:://g'` aklog -c $r -k $r
+ KRB5CCNAME=`KRB5CCNAME=DIR:$HOME/.cache/krb5cc klist -l | grep $r | sed -e s'/.*:://g'` aklog -c $r -k $r
done
+ aklog club.cc.cmu.edu
}
rkinits () {
for r in CS.CMU.EDU ANDREW.CMU.EDU; do
- KRB5CCNAME=`klist -l | grep $r | sed -e s'/.*:://g'` kinit -R rkavanag@$r
+ KRB5CCNAME=`KRB5CCNAME=DIR:$HOME/.cache/krb5cc klist -l | grep $r | sed -e s'/.*:://g'` kinit -R rkavanag@$r
done
aklogs
}