chiark / gitweb /
* backup-snaprsync: pass -I to rsync when copying rsums.
[chiark-utils.git] / backup / loaded
1 #!/bin/sh
2 # loaded
3 # Entry point for sysadmin to state that we've loaded a tape
4 #
5 # This file is part of chiark backup, a system for backing up GNU/Linux and
6 # other UN*X-compatible machines, as used on chiark.greenend.org.uk.
7 #
8 # chiark backup is:
9 #  Copyright (C) 1997-1998,2000-2001 Ian Jackson <ian@chiark.greenend.org.uk>
10 #  Copyright (C) 1999 Peter Maydell <pmaydell@chiark.greenend.org.uk>
11 #
12 # This is free software; you can redistribute it and/or modify it under the
13 # terms of the GNU General Public License as published by the Free Software
14 # Foundation; either version 2, or (at your option) any later version.
15 #
16 # This is distributed in the hope that it will be useful, but WITHOUT ANY
17 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
18 # FOR A PARTICULAR PURPOSE.  See the GNU General Public License for more
19 # details.
20 #
21 # You should have received a copy of the GNU General Public License along
22 # with this program; if not, write to the Free Software Foundation, Inc.,
23 # 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24
25 set -e
26 cd /var/lib/chiark-backup
27
28 if test -f "/etc/chiark-backup/tape.$1"
29 then
30         echo "$1" >really-TAPEID
31         echo "Will assume tape is $1 unless I discover otherwise."
32 else
33         if [ "x$1" != x ]; then echo "Tape $1 not found."; fi
34         echo "Will only use tape if it has a TAPEID."
35         rm -f really-TAPEID
36 fi