aboutsummaryrefslogtreecommitdiff
path: root/restore.in
blob: 8618e2d5217dbb93548c6a947b60665a1e32fc10 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
#! /bin/sh
# This file is part of BEAM
# Copyright (C) 2012-2014 Sergey Poznyakoff
#
# BEAM is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3, or (at your option)
# any later version.
#
# BEAM is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with BEAM.  If not, see <http://www.gnu.org/licenses/>.

libdir=@LIBDIR@/beam
set -e
. $libdir/common.sh
set +e

if [ "$1" = "--wtf" ]; then
    wtf $(basename $0) create a backup
    exit 0
fi

load_config
taroptions="$backup_tar_options $backup_rsh_command"

# Options
root=/
verbose=
logfile=
dry_run=
listonly=
confirm=1

getyn() {
    echo -n "$0:" $* " [Y/n]? "
    read REPLY
    case $REPLY in
	''|y*|Y*) REPLY=y;;
	*) REPLY=n;;
    esac
}

help() {
    cat <<EOT
usage: restore [OPTIONS] [ITEM [ITEM...]]
restores this system from a backup

OPTIONS:
  -c, --confirm        do not ask for confirmation; run straight into restoring
  -C, --directory DIR  restore into directory DIR instead of $root
  -v, --verbose        increase verbosity
  -n, --dry-run        do nothing, print what would have been done
  -t, --list           list archives, instead of extracting
  -l, --logfile FILE   log to FILE
  -L, --level N        set incremental dump level to stop at
  -R, --round N        use archives from incremental round N
  -W, --week N         use archives from week N
  -h, --help           produce this help list

Valid ITEMs are: $backup_items

Report bugs to <@PACKAGE_BUGREPORT@>
EOT
    exit 0
}

while [ $# -ne 0 ]
do
    case $1 in
	-C|--directory) shift; root=$1;;
	-c|--confirm) confirm=0;;
	-v|--verbose) verbose="$verbose -v";;
	-t|--list) listonly=1;;
	-l|--logfile) shift; logfile=$1; confirm=0;;
	-n|--dry-run) dry_run=echo;;
	-h|--help) help;;
	-V|--version) print_version;;
	-L|--level) shift; level=$1;;
	-R|--round) shift; round=$1;;
	-W|--week) shift; week=$1;;
	--) shift; break;;
	-*) echo >&2 "$0: unrecognized option $1"; exit 1;;
	*) break;;
    esac
    shift
done

if [ -z "$listonly" ]; then
    taroptions="$taroptions -x"
else
    taroptions="$taroptions -t"
fi    

# Collect items to be restored.
items=$*

test -z "$items" && items="$backup_items"

if [ -n "$logfile" ]; then
    confirm=0
    exec >>$logfile
    exec 2>&1
fi        

runhook prologue_hook
trap "runhook epilogue_hook" EXIT INT QUIT TERM

# Guess missing values
if [ -z "$week" ]; then
    hour=$(date +%H)
    if [ $hour -gt 6 ]; then
	week=$(date +%U)
    else  
	week=$(date -d yesterday +%U)
    fi
fi

if [ -z "$round" ]; then
    round=$(beam_exec find $backup_local_archive_dir \
             -regex '.*-'$week'-[0-9][0-9]*-[0-9][0-9]*\..*' \
             -printf '%f\\n' | 
            sed 's/.*-'$week'-\([0-9][0-9]*\)-[0-9][0-9]*\..*/\1/' | 
            sort +0 -1 | 
            tail -1)
    test -z "$round" && abend 1 "cannot determine last round number"
fi

if [ -z "$level" ]; then
    level=$(beam_exec find $backup_local_archive_dir \
             -regex '.*-'$week-$round'-[0-9][0-9]*\..*' \
             -printf '%f\\n' | 
            sed 's/.*-'$week-$round'-\([0-9][0-9]*\)\..*/\1/' | 
            sort +0 -1 | 
            tail -1)
    test -z "$level" && abend 1 "cannot determine last level number"
fi

echo "$0: target root directory $root"
echo "$0: items to be restored: $items"
echo "$0: restoring from week $week, round $round, level $level"

if [ $confirm -ne 0 ]; then
    getyn "Do you wish to proceed"
    test $REPLY = "n" && exit 0
fi

logit "started"

for item in $items
do
    eval type=\$${item}_type
    ${type}_restore $item
done

trap - EXIT INT QUIT TERM
runhook epilogue_hook

logit "finished"


Return to:

Send suggestions and report system problems to the System administrator.