blob: 65c3185e66b47acb52ca42fc8e18dfcb7055f0ce (
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
|
#!/bin/bash
# import functions library
source rescue_common
tmpdir="/tmp/flash-rescue-root"
rootdir="$tmpdir/pen"
function prepare() {
mkdir -p $rootdir
if ! mount_usbroot $rootdir; then
return 1
fi
if [ x"$version" = x"1.0" ]; then
mkdir -p $tmpdir/shared
if ! mount_sharedroot $tmpdir/shared; then
return 1
fi
fi
if [ ! -d $dir ]; then
mkdir $dir
fi
return 0
}
function doit() {
clear
echo
echo -n 'Creating backup file. This can take some time: '
bzip2 -c $loop > $target 2> /tmp/rescue-backup.err &
sleep 2
while ps | grep -q bzip2; do
progress
done
sync
echo
echo
errsize=$(ls -la /tmp/rescue-backup.err | cut -d' ' -f5)
if [ $errsize -ne 0 ]; then
echo "Error compressing user files into $target"
return 1
else
echo 'Backup file created!'
fi
echo
return 0
}
function cleanup() {
if [ x"$version" = x"1.0" ]; then
umount $tmpdir/shared > /dev/null 2>&1
rmdir $tmpdir/shared
fi
umount $rootdir > /dev/null 2>&1
rmdir $rootdir $tmpdir 2> /dev/null
return 0
}
clear
trap cleanup SIGINT
version=""
if ! insert_pendrive; then
exit 1
fi
if [ x"$version" = x"1.0" ]; then
dir="$tmpdir/shared/backup"
loop="$rootdir/loopbacks/system.loop"
else
dir="$rootdir/backup"
loop="$rootdir/.loopbacks/system.loop"
fi
file="backup-$(date +%Y%m%d).bz2"
target="$dir/$file"
if ! prepare; then
cleanup
exit 1
fi
if ! doit; then
cleanup
exit 1
fi
cleanup
exit 0
|