[71] in SIPB-AFS-requests
afs backups
daemon@ATHENA.MIT.EDU (daemon@ATHENA.MIT.EDU)
Wed Sep 20 17:27:42 1989
From: qjb@ATHENA.MIT.EDU
Date: Wed, 20 Sep 89 17:29:05 -0400
To: jtkohl@ATHENA.MIT.EDU
Cc: sipb-afsreq@ATHENA.MIT.EDU
Here are the scripts use to back up the athena cell. They come
from /afs/net/mit/jis. The first is afsbackup; the second is
afsbackup.1. The first is the one called (as if this isn't
obvious).
jksrvtgt is a ksrvtgt that gets eight hour tickets.
These backups are currently run from osiris.
#!/bin/csh
newpag afsbackup.1 </dev/null >>&/site/afsbackup/afsbackup.out
if ($status == 0) at 2300 afsbackup
exit 0
#!/bin/csh -v
echo "+++++++++++++++++++++++++++++BEGIN+++++++++++++++++++++++++++++++"
date
echo "+++++++++++++++++++++++++++++BEGIN+++++++++++++++++++++++++++++++"
setenv KRBTKFILE /tmp/tkt_afsadmin
jksrvtgt afsadmin "" /site/afsbackup/afsadminkey
aklog
tokens
foreach foo (`cat /afs/athena/service/BACKUP_LIST`)
vos release $foo -cell athena.mit.edu -v
vos backup $foo -cell athena.mit.edu -v
end
unlog
kdestroy
echo "++++++++++++++++++++++++++++++END++++++++++++++++++++++++++++++++"
date
echo "++++++++++++++++++++++++++++++END++++++++++++++++++++++++++++++++"
exit 0