]> git.sur5r.net Git - bacula/bacula/blob - regress/tests/etc-test-root
replace references to sqlite scripts with generic bacula scripts.
[bacula/bacula] / regress / tests / etc-test-root
1 #!/bin/sh
2 #
3 # Run a simple backup of the Bacula build directory
4 #   then restore it.
5 #
6 MUID=`/usr/bin/id -u`
7 if [ $MUID != 0 ] ; then
8    echo " "
9    echo "You must be root to run this test."
10    echo "  ===== etc-test-root failed!!! ===== "
11    echo "  ===== etc-test-root failed!!! ===== " >>test.out
12    echo " "
13    exit 1
14 fi
15 echo " "
16 echo " "
17 echo " === Starting /etc save/restore test ==="
18 echo " "
19 echo " "
20 cwd=`pwd`
21 scripts/copy-test-confs
22 scripts/cleanup
23 echo "/etc" >/tmp/file-list
24 bin/bacula stop 2>&1 >/dev/null
25 cd bin
26 ./drop_bacula_tables >/dev/null 2>&1
27 ./make_bacula_tables >/dev/null 2>&1
28 ./grant_bacula_privileges 2>&1 >/dev/null
29 cd ..
30 bin/bacula start 2>&1 >/dev/null
31 bin/bconsole -c bin/bconsole.conf <<END_OF_DATA
32 @output /dev/null
33 messages
34 @output tmp/log1.out
35 label storage=File
36 TestVolume001
37 run job=NightlySave
38 yes
39 wait
40 messages
41 @# 
42 @# now do a restore
43 @#
44 @output tmp/log2.out
45 restore where=${cwd}/tmp/bacula-restores select all
46 yes
47 wait
48 messages
49 @output
50 quit
51 END_OF_DATA
52 bin/bacula stop 2>&1 >/dev/null
53 cd /
54 ${cwd}/bin/testls -e ${cwd}/scripts/exclude-etc-test etc >${cwd}/tmp/1       
55 cd ${cwd}/tmp/bacula-restores
56 ${cwd}/bin/testls -e ${cwd}/scripts/exclude-etc-test etc >${cwd}/tmp/2
57 sort <${cwd}/tmp/1 >${cwd}/tmp/original
58 sort <${cwd}/tmp/2 >${cwd}/tmp/restored
59 rm -f ${cwd}/tmp/1 ${cwd}/tmp/2
60 cd ${cwd}
61 diff tmp/original tmp/restored 2>&1 1>/dev/null
62 if [ $? != 0 ] ; then
63    echo " "
64    echo " "
65    echo "  ===== etc-test-root failed!!! ===== "
66    echo "  ===== etc-test-root failed!!! ===== " >>test.out
67    echo " "
68 else
69    echo "  ===== etc-test-root OK ===== "
70    echo "  ===== etc-test-root OK ===== " >>test.out
71    scripts/cleanup
72 fi