| 31 | * Check if the previous back up contains all needed information for restore in the implementation phase. |
| 32 | * Because of its importance the postgres database must be set up to make periodical back ups |
| 33 | * add following in the crontab |
| 34 | {{{ |
| 35 | c# m h dom mon dow command |
| 36 | 0 3 * * sun sh /home/scs/backup/backup.sh |
| 37 | 0 9 * * * sh /home/scs/backup/psql_backup.sh |
| 38 | }}} |
| 39 | * Create following script psql_backup.sh that backs up postgres database: |
| 40 | {{{ |
| 41 | #!/bin/bash |
| 42 | pg_dumpall -U scs -c -d > "/home/scs/backup/postgres/`date +%Y-%m-%d`.psql" |
| 43 | gzip "/home/scs/backup/postgres/`date +%Y-%m-%d`.psql" |
| 44 | }}} |
| 45 | * Create script that backs up the build server in sophie:/home/build/backup/backup.sh (the function below creates recursive copy of the .hudson directory excluding the workspace directory): |
| 46 | {{{ |
| 47 | #!/bin/bash |
| 48 | dirname="/home/build/backup/`date +%Y-%m-%d`" |
| 49 | isofile="`date +%Y-%m-%d`.iso" |
| 50 | mkdir $dirname |
| 51 | mkdir $dirname/.hudson/ |
| 52 | |
| 53 | copy() { |
| 54 | for file in `ls "$1$2"` |
| 55 | do |
| 56 | if [ $file = 'Sophie' ] |
| 57 | then |
| 58 | file="Sophie 2.0" |
| 59 | fi |
| 60 | if [ `echo "$1$2$file" | grep /sophie2/ | wc -l` -eq 0 ] |
| 61 | then |
| 62 | if [ -d "$1$2$file" ] |
| 63 | then |
| 64 | mkdir "$dirname$2$file" |
| 65 | copy "$1" "$2$file/" |
| 66 | else |
| 67 | cp "$1$2$file" "$dirname$2$file" |
| 68 | fi |
| 69 | else |
| 70 | mkdir "$1$2$file" |
| 71 | fi |
| 72 | done |
| 73 | } |
| 74 | |
| 75 | |
| 76 | copy /home/build /.hudson/ |
| 77 | |
| 78 | tar -cvvf $dirname.tar $dirname |
| 79 | gzip $dirname.tar |
| 80 | rm -Rf $dirname |
| 81 | }}} |
| 82 | * Execute the scripts to create two back up DVD's. |
| 83 | * They should be stored separately. |