database_cleanup.sh.in: cleaned up some spelling
[citadel.git] / citadel / database_cleanup.sh.in
1 #!/bin/bash
2
3 die () {
4         echo Exiting.
5         exit 1
6 }
7
8 # data dir from autoconf?
9 DATA_DIR="@MAKE_DATA_DIR@"
10 if test -z "$DATA_DIR" ; then
11         DATA_DIR="/usr/local/citadel"
12 fi
13 DATA_DIR=$DATA_DIR/data
14
15 # If we're on an Easy Install system, use our own db_ tools.
16 #
17 if [ -x /usr/local/ctdlsupport/bin/db_dump ] ; then
18         export PATH=/usr/local/ctdlsupport/bin:$PATH
19         RECOVER=/usr/local/ctdlsupport/bin/db_recover
20         DUMP=/usr/local/ctdlsupport/bin/db_dump
21         LOAD=/usr/local/ctdlsupport/bin/db_load
22
23 else
24         # ok usual install?
25         if test -f /usr/bin/db_dump; then 
26                 RECOVER=/usr/bin/db_recover
27                 DUMP=/usr/bin/db_dump
28                 LOAD=/usr/bin/db_load
29         else
30                 if test -n "`ls /usr/bin/db?*recover`"; then
31                         # seems we have something debian alike thats adding version in the filename
32                         if test "`ls /usr/bin/db*recover |wc -l`" -gt "1"; then 
33                                 echo "Warning: you have more than one version of the Berkeley DB utilities installed." 1>&2
34                                 echo "Using the latest one." 1>&2
35                                 RECOVER=`ls /usr/bin/db*recover |sort |tail -n 1`
36                                 DUMP=`ls /usr/bin/db*dump |sort |tail -n 1`
37                                 LOAD=`ls /usr/bin/db*load |sort |tail -n 1`
38                         fi
39                 else
40                         echo "database_cleanup.sh cannot find the Berkeley DB utilities.  Exiting." 1>&2
41                         die
42                 fi
43
44         fi
45 fi
46
47 # Ok, let's begin.
48 #
49
50 clear
51 cat <<!
52
53 Citadel Database Cleanup
54 ---------------------------
55
56 This script exports, deletes, and re-imports your database.  If you have
57 any data corruption issues, this program may be able to clean them up for you.
58  
59 Please note that this program does a Berkeley DB dump/load, not a Citadel
60 export.  The export files are not generated by the Citadel export module.
61
62 WARNING #1:
63   MAKE A BACKUP OF YOUR DATA BEFORE ATTEMPTING THIS.  There is no guarantee
64   that this will work (in case of disk full, power failure, program crash)!
65
66 WARNING #2:
67   citserver must NOT be running while you do this.
68
69 WARNING #3:
70   Please try "cd $DATA_DIR; $RECOVER -c" first.  Use this tool
71   only if that one fails to fix your problem.
72
73 WARNING #4:
74   You must have an amount of free space on your disk that is at least twice
75   the size of your database, see the following output:
76   (for substantially better performance you should specify a location that is 
77    on another disk than $DATA_DIR)
78
79 `df -h`
80
81 you will need `du -sh $DATA_DIR|sed "s;/.*;;"` of free space.
82
83 !
84
85 echo -n "Do you want to continue? "
86
87 read yesno
88 case "$yesno" in
89         "y" | "Y" | "yes" | "YES" | "Yes" )
90                 echo 
91                 echo DO NOT INTERRUPT THIS PROCESS.
92                 echo
93         ;;
94         * )
95                 exit
96 esac
97
98 for x in 00 01 02 03 04 05 06 07 08 09 0a
99 do
100         filename=cdb.$x
101         echo Dumping $filename
102         $DUMP -h $DATA_DIR $filename >/tmp/CitaDump.$x || die
103         rm -f $DATA_DIR/$filename
104 done
105
106 echo Removing old databases
107 rm -f ./data/*
108
109 for x in 00 01 02 03 04 05 06 07 08 09 0a
110 do
111         filename=cdb.$x
112         echo Loading $filename
113         $LOAD -h $DATA_DIR $filename </tmp/CitaDump.$x && {
114                 rm -f /tmp/CitaDump.$x
115         }
116 done
117
118 echo 
119 echo Dump/load operation complete.  Start your Citadel server now.
120 echo