Imported Upstream version 2.5.1
[debian/amanda] / server-src / amdump.sh.in
1 #!@SHELL@
2 #
3 # Amanda, The Advanced Maryland Automatic Network Disk Archiver
4 # Copyright (c) 1991-1998 University of Maryland at College Park
5 # All Rights Reserved.
6 #
7 # Permission to use, copy, modify, distribute, and sell this software and its
8 # documentation for any purpose is hereby granted without fee, provided that
9 # the above copyright notice appear in all copies and that both that
10 # copyright notice and this permission notice appear in supporting
11 # documentation, and that the name of U.M. not be used in advertising or
12 # publicity pertaining to distribution of the software without specific,
13 # written prior permission.  U.M. makes no representations about the
14 # suitability of this software for any purpose.  It is provided "as is"
15 # without express or implied warranty.
16 #
17 # U.M. DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING ALL
18 # IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL U.M.
19 # BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
20 # WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
21 # OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
22 # CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23 #
24 # Author: James da Silva, Systems Design and Analysis Group
25 #                          Computer Science Department
26 #                          University of Maryland at College Park
27 #
28
29 #
30 # amdump: Manage running one night's Amanda dump run.
31 #
32
33 prefix=@prefix@
34 exec_prefix=@exec_prefix@
35 sbindir=@sbindir@
36 libexecdir=@libexecdir@
37
38 confdir=@CONFIG_DIR@
39
40 PATH=$sbindir:$libexecdir:/usr/bin:/bin:/usr/sbin:/sbin:/usr/ucb
41 export PATH
42
43 USE_VERSION_SUFFIXES="@USE_VERSION_SUFFIXES@"
44 if test "$USE_VERSION_SUFFIXES" = "yes"; then
45         SUF="-@VERSION@"
46 else
47         SUF=
48 fi
49
50 if [ $# -lt 1 ]
51 then
52         echo "Usage: amdump config [host [disk...]...]" 1>&2
53         exit 1
54 fi
55
56
57 conf=$1
58 if [ ! -d $confdir/$conf ]; then
59     echo "amdump$SUF: could not find directory $confdir/$conf" 1>&2
60     exit 1
61 fi
62 shift
63
64 cd $confdir/$conf || exit 1
65
66 logdir=`amgetconf$SUF $conf logdir "$@"`
67 [ $? -ne 0 ]  && exit 1
68 errfile=$logdir/amdump
69 tapecycle=`amgetconf$SUF $conf tapecycle "$@"`
70 [ $? -ne 0 ]  && exit 1
71 dumpuser=`amgetconf$SUF $conf dumpuser "$@"`
72 [ $? -ne 0 ]  && exit 1
73
74 runuser=`{ whoami ; } 2>/dev/null`
75 if [ $? -ne 0 ]; then
76         idinfo=`{ id ; } 2>/dev/null`
77         if [ $? -ne 0 ]; then
78                 runuser=${LOGNAME:-"??unknown??"}
79         else
80                 runuser=`echo $idinfo | sed -e 's/).*//' -e 's/^.*(//'`
81         fi
82 fi
83
84 #if [ $runuser != $dumpuser ]; then
85 #       echo "amdump: must be run as user $dumpuser, not $runuser" 1>&2
86 #       exit 1
87 #fi
88
89 if test -f hold; then
90         echo "amdump: waiting for hold file to be removed" 1>&2
91         while test -f hold; do
92                 sleep 60
93         done
94 fi
95
96 if test -f $errfile || test -f $logdir/log; then
97         echo "amdump: amdump or amflush is already running, or you must run amcleanup" 1>&2
98         exit 1
99 fi
100
101 umask 077
102
103 # Plan and drive the dumps.
104 #exec </dev/null >$errfile 2>&1
105 touch $errfile
106 exec </dev/null 2>>$errfile 1>&2
107 echo "amdump: start at `date`"
108 echo "amdump: datestamp `date +%Y%m%d`"
109 $libexecdir/planner$SUF $conf "$@" | $libexecdir/driver$SUF $conf "$@"
110 echo "amdump: end at `date`"
111
112 # Send out a report on the dumps.
113 $sbindir/amreport$SUF $conf "$@"
114
115 # Roll the log file to its datestamped name.
116 $libexecdir/amlogroll$SUF $conf "$@"
117
118 # Trim the log file to those for dumps that still exist.
119 $libexecdir/amtrmlog$SUF $conf "$@"
120
121 # Trim the index file to those for dumps that still exist.
122 $libexecdir/amtrmidx$SUF $conf "$@"
123
124 # Keep a debug log through the tapecycle plus a couple of days.
125 maxdays=`expr $tapecycle + 2`
126 days=1
127 # First, find out the last existing errfile,
128 # to avoid ``infinite'' loops if tapecycle is infinite
129 while [ $days -lt $maxdays ] && [ -f $errfile.$days ]; do
130         days=`expr $days + 1`
131 done
132 # Now, renumber the existing log files
133 while [ $days -ge 2 ]; do
134         ndays=`expr $days - 1`
135         mv $errfile.$ndays $errfile.$days
136         days=$ndays
137 done
138 mv $errfile $errfile.1
139
140 exit 0