]>
Dogcows Code - chaz/tar/blob - scripts/level-0
3 # Run this script as root on the machine that has the tape drive, to make a
6 # If you give `now' as an argument, the dump is done immediately.
7 # Otherwise, it waits until 1am, or until the hour given as argument.
8 # Specify the hour as a number from 0 to 23.
10 # You must edit the file `backup-specs' to set the parameters for your site.
12 # Useful for backup-specs, in case things have to be done slightly
13 # differently for different dump levels.
16 # Insure `mail' is in PATH.
17 PATH
="/usr/ucb:${PATH}"
20 # This is not the most reliable test in the world. The following might be
24 # euid="`sed -ne '/^'\"${whoami}\"':/{s/^[^:]*:[^:]*://;s/:.*//p;q;}' /etc/passwd`"
25 # if [ "${euid}" != 0 ]; then ...
28 echo "The backup must be run as root or else some files will fail to be dumped."
32 # Get the values of BACKUP_DIRS, BACKUP_FILES, and other variables.
35 # Maybe sleep until around specified or default hour.
36 if [ "${1}" != "now" ]; then
37 if [ "${1}x" != "x" ]; then
43 pausetime
="`date | awk '
45 hr = substr($4, 1, 2);
46 mn = substr($4, 4, 2);
47 if((hr + 0) < (spec + 0))
48 print 3600 * (spec - hr) - 60 * mn;
50 print 3600 * (spec + (24 - hr)) - 60 * mn;
54 echo "${SLEEP_MESSAGE}"
60 # Put startdate in the subject line of mailed report, since if it happens
61 # to run longer than 24 hours (as may be the case if someone forgets to put
62 # in the next volume of the tape in adequate time), the backup date won't
63 # appear too misleading.
68 # Logfile name should be in the form ``log-1993-03-18-level-0''
69 # They go in the subdirectory `log' of the current directory.
70 # i.e. year-month-date. This format is useful for sorting by name, since
71 # logfiles are intentionally kept online for future reference.
72 LOGFILE
="log/log-`date | sed -ne '
73 s/[^ ]* *\([^ ]*\) *\([^ ]*\).* \([^ ]*\)$/\3-\1-\2/
74 /-[0-9]$/s/\([0-9]\)$/0\1/
86 /Dec/{s/Dec/12/p;q;}'`-level-${DUMP_LEVEL}"
88 localhost
="`hostname | sed -e 's/\..*//'`"
90 TAR_PART1
="${TAR} -c --multi-volume --one-file-system --blocking=${BLOCKING} --sparse --volno-file=${VOLNO_FILE}"
92 # Only use --info-script if DUMP_REMIND_SCRIPT was defined in backup-specs
93 if [ "x${DUMP_REMIND_SCRIPT}" != "x" ]; then
94 TAR_PART1
="${TAR_PART1} --info-script='${DUMP_REMIND_SCRIPT}'"
97 # Make sure the log file did not already exist. Create it.
99 if [ -f "${LOGFILE}" ] ; then
100 echo "Log file ${LOGFILE} already exists." 1>&2
106 # Most everything below here is run in a subshell for which all output is
107 # piped through `tee' to the logfile. Doing this, instead of having
108 # multiple pipelines all over the place, is cleaner and allows access to
109 # the exit value from various commands more easily.
111 # Caveat: Some version of `mt' require `-t', not `-f'.
112 mt
-f "${TAPE_FILE}" rewind
113 rm -f "${VOLNO_FILE}"
116 while [ $# -ne 0 ] ; do
118 remotehost
="`echo \"${1}\" | sed -e 's/:.*$//'`"
119 fs
="`echo \"${1}\" | sed -e 's/^.*://'`"
120 fsname
="`echo \"${1}\" | sed -e 's/\//:/g'`"
122 # This filename must be absolute; it is opened on the machine that runs tar.
123 TAR_PART2
="--listed=/etc/tar-backup/temp.level-0"
124 TAR_PART3
="--label='Full backup of ${fs} on ${remotehost} at ${date}' -C ${fs} ."
126 echo "Backing up ${1} at ${date}"
128 # Actually back things up.
130 if [ "z${localhost}" != "z${remotehost}" ] ; then
131 rsh "${remotehost}" mkdir /etc
/tar-backup > /dev
/null
2>&1
132 rsh "${remotehost}" rm -f /etc
/tar-backup/temp.level
-0
133 rsh "${remotehost}" ${TAR_PART1} -f "${localhost}:${TAPE_FILE}" ${TAR_PART2} ${TAR_PART3}
135 mkdir /etc
/tar-backup > /dev
/null
2>&1
136 rm -f /etc
/tar-backup/temp.level
-0
137 # Using `sh -c exec' causes nested quoting and shell substitution
138 # to be handled here in the same way rsh handles it.
139 sh
-c "exec ${TAR_PART1} -f \"${TAPE_FILE}\" ${TAR_PART2} ${TAR_PART3}"
142 # `rsh' doesn't exit with the exit status of the remote command. What
143 # stupid lossage. TODO: think of a reliable workaround.
144 if [ $?
-ne 0 ] ; then
145 echo "Backup of ${1} failed." 1>&2
146 # I'm assuming that the tar will have written an empty
147 # file to the tape, otherwise I should do a cat here.
149 if [ "z${localhost}" != "z${remotehost}" ] ; then
150 rsh "${remotehost}" mv -f /etc
/tar-backup/temp.level
-0 "/etc/tar-backup/${fsname}.level-0"
152 mv -f /etc
/tar-backup/temp.level
-0 "/etc/tar-backup/${fsname}.level-0"
160 # Dump any individual files requested.
162 if [ "x${BACKUP_FILES}" != "x" ] ; then
165 TAR_PART2
="--listed=/etc/tar-backup/temp.level-0"
166 TAR_PART3
="--label='Full backup of miscellaneous files at ${date}'"
168 mkdir /etc
/tar-backup > /dev
/null
2>&1
169 rm -f /etc
/tar-backup/temp.level
-0
171 echo "Backing up miscellaneous files at ${date}"
173 # Using `sh -c exec' causes nested quoting and shell substitution
174 # to be handled here in the same way rsh handles it.
175 sh
-c "exec ${TAR_PART1} -f \"${TAPE_FILE}\" ${TAR_PART2} ${TAR_PART3} ${BACKUP_FILES}"
177 # `rsh' doesn't exit with the exit status of the remote command. What
178 # lossage. TODO: think of a reliable workaround.
179 if [ $?
-ne 0 ] ; then
180 echo "Backup of miscellaneous files failed."
181 # I'm assuming that the tar will have written an empty
182 # file to the tape, otherwise I should do a cat here.
184 mv -f /etc
/tar-backup/temp.level
-0 /etc
/tar-backup/misc.level
-0
188 echo "No miscellaneous files specified"
191 # Caveat: some versions of `mt' use `-t' instead of `-f'.
192 mt
-f "${TAPE_FILE}" rewind
193 mt
-f "${TAPE_FILE}" offl
195 ) 2>&1 | tee -a "${LOGFILE}"
197 echo "Sending the dump log to ${ADMINISTRATOR}"
198 mail -s "Results of backup started ${startdate}" ${ADMINISTRATOR} < "${LOGFILE}"
This page took 0.045961 seconds and 4 git commands to generate.