]>
Dogcows Code - chaz/tar/blob - scripts/backup.in
2 # This program is part of GNU tar
3 # Copyright (C) 2004, 2005, 2006 Free Software Foundation
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 1, or (at your option)
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
20 # Load library routines
21 SYSCONFDIR
=${SYSCONFDIR-@sysconfdir@}
22 .
${LIBDIR-@libexecdir@}/backup.sh
30 usage: $PROGNAME [OPTIONS] [WHEN]
33 -l, --level=LEVEL Do backup level LEVEL (default $DUMP_LEVEL).
34 -f, --force Force backup even if today's log file already
36 -v, --verbose[=LEVEL] Set verbosity level. Default 100.
37 -t, --time=TIME Wait till TIME, then do backup.
39 Informational options:
40 -h, --help Display this help message.
41 -V, --version Display program version.
43 Optional argument WHEN is for backward compatibility only. It has been
44 superseded by --time option.
45 TIME argument can be one of:
47 now -- do backup immediately.
48 HH -- do backup at HH hours.
49 HH:MM -- do backup at HH:MM.
51 Send bug reports to @PACKAGE_BUGREPORT@.
55 # For compatibility with previous versions, deduce the backup level
56 # from the command name
58 level
-[0-9]) DUMP_LEVEL
=`expr $PROGNAME : 'level-\([0-9][0-9]*\)'`;;
63 if [ -z "$prev" ]; then
65 optarg
=`expr "x$opt" : 'x[^=]*=\(.*\)'`
72 --l=*|--le=*|--lev=*|--leve=*|--level=*)
75 -l|--l|--le|--lev|--leve|--level)
78 --verb=*|--verbo=*|--verbos=*|--verbose=*)
81 -v|--verb|--verbo|--verbos|--verbose)
84 -v*) VERBOSE
=`expr $option : "-v\(.*\)"`;;
85 --t=*|--ti=*|--tim=*|--time=*)
89 -t*) TIME
=`expr $option : "-t\(.*\)"`;;
90 --t|--ti|--tim|--time)
93 -V|--v|--ve|--ver|--vers|--versi|--versio|--version)
94 echo "backup (@PACKAGE_NAME@) @VERSION@"
97 -h|--h|--he|--hel|--help)
100 -f|--f|--fo|--for|--forc|--force)
103 *) if [ "x$TIME" != "x" ]; then
104 bailout
"Extra argument. Try $PROGNAME --help for more info."
111 if [ "x$TIME" = x
]; then
112 bailout
"No backup time specified. Try $PROGNAME --help for more info."
118 # Maybe sleep until around specified or default hour.
121 if [ $DUMP_LEVEL -ne 0 ]; then
122 PREV_LEVEL
=`expr $DUMP_LEVEL - 1`
123 PREV_DATE
=`ls -t ${LOGPATH}/log-*-level-$PREV_LEVEL|
125 sed "s,${LOGPATH}/log-\(.*\)-level.*,\1,"`
126 if [ "x$PREV_DATE" = x
]; then
127 bailout
"Can't determine date of the previous backup"
129 message
0 "Backup from $PREV_DATE to $NOW"
134 # Make sure the log file did not already exist. Create it.
136 if [ "x$FORCE" = "xyes" ]; then
140 if [ -f "${LOGFILE}" ] ; then
141 bailout
"Log file ${LOGFILE} already exists."
145 message
1 "Ready for backup."
146 message
10 "TAR invocation: $TAR_PART1"
147 message
20 "Variables:"
148 message
20 "BACKUP_DIRS=$BACKUP_DIRS"
149 message
20 "BACKUP_FILES=$BACKUP_FILES"
151 # The buch of commands below is run in a subshell for which all output is
152 # piped through `tee' to the logfile. Doing this, instead of having
153 # multiple pipelines all over the place, is cleaner and allows access to
154 # the exit value from various commands more easily.
156 message
1 "preparing tapes"
157 $MT_BEGIN "${TAPE_FILE}"
158 rm -f "${VOLNO_FILE}"
160 message
1 "processing backup directories"
163 while [ $# -ne 0 ] ; do
165 fs
="`echo \"${1}\" | sed -e 's/^.*://'`"
167 fsname
="`echo \"${1}\" | sed -e 's/\//:/g'`"
168 remotehost
="`expr \"${1}\" : '\([^/][^/]*\):.*'`"
169 if [ -z "$remotehost" ]; then
170 remotehost
=$localhost
173 echo "Backing up ${1} at ${date}"
175 message
10 "fsname=$fsname"
176 message
10 "remotehost=$remotehost"
177 if [ $DUMP_LEVEL -eq 0 ]; then
178 make_level_log
${remotehost}
180 echo "Last `prev_level` dump on this filesystem was on $PREV_DATE"
181 remote_run
"${remotehost}" cp "`level_log_name ${fsname} $PREV_LEVEL`" "`level_log_name temp`"
184 ${DUMP_BEGIN-:} $DUMP_LEVEL $remotehost $fs $fsname
185 backup_host
${remotehost} \
186 "--listed=`level_log_name temp`" \
187 "--label='`print_level` backup of ${fs} on ${remotehost} at ${NOW}'" \
190 # `rsh' doesn't exit with the exit status of the remote command. What
191 # stupid lossage. TODO: think of a reliable workaround.
192 if [ $?
-ne 0 ] ; then
193 echo "Backup of ${1} failed." 1>&2
194 # I'm assuming that the tar will have written an empty
195 # file to the tape, otherwise I should do a cat here.
197 flush_level_log
${remotehost} ${fsname}
199 ${MT_STATUS} "$TAPE_FILE"
200 ${DUMP_END-:} $DUMP_LEVEL $remotehost $fs $fsname
201 echo "sleeping ${SLEEP_TIME} seconds"
206 # Dump any individual files requested.
208 if [ "x${BACKUP_FILES}" != "x" ] ; then
209 message
1 "processing individual files"
213 if [ $DUMP_LEVEL -eq 0 ]; then
214 make_level_log
$localhost
216 echo "Last `prev_level` dump on this filesystem was on $PREV_DATE"
217 remote_run
"${localhost}" cp "`level_log_name MISC $PREV_LEVEL`" "`level_log_name temp`"
220 echo "Backing up miscellaneous files at ${date}"
222 ${DUMP_BEGIN-:} $DUMP_LEVEL $localhost MISC MISC
223 backup_host
$localhost \
224 "--listed=`level_log_name temp`"\
225 "--label='`print_level` backup of miscellaneous files at ${NOW}'" \
228 if [ $?
-ne 0 ] ; then
229 echo "Backup of miscellaneous files failed."
230 # I'm assuming that the tar will have written an empty
231 # file to the tape, otherwise I should do a cat here.
233 flush_level_log
$localhost MISC
235 ${MT_STATUS} "$TAPE_FILE"
236 ${DUMP_END-:} $DUMP_LEVEL $localhost MISC MISC
238 echo "No miscellaneous files specified"
241 message
1 "final cleanup"
243 $MT_REWIND "${TAPE_FILE}"
244 $MT_OFFLINE "${TAPE_FILE}"
246 ) 2>&1 | tee -a "${LOGFILE}"
248 if test "${ADMINISTRATOR}" != NONE
; then
249 echo "Sending the dump log to ${ADMINISTRATOR}"
250 mail -s "Results of backup started ${startdate}" ${ADMINISTRATOR} < "${LOGFILE}"
This page took 0.045479 seconds and 4 git commands to generate.