]> git.decadent.org.uk Git - dak.git/commitdiff
dinstall
authorJoerg Jaspert <joerg@debian.org>
Sat, 21 Feb 2009 09:42:48 +0000 (10:42 +0100)
committerJoerg Jaspert <joerg@debian.org>
Sat, 21 Feb 2009 09:42:48 +0000 (10:42 +0100)
make sure all functions start in a defined dir, currently $configdir.
they have to cd to wherever they want to be if thats not good enough
for them.

Signed-off-by: Joerg Jaspert <joerg@debian.org>
config/debian/dinstall

index 625209810e17b72e4e9c513f6c039073a7d52f6f..2627e5995bd5aea5de825a6a2db7b70d00628a3e 100755 (executable)
@@ -103,11 +103,13 @@ function pgdump_pre() {
        log "Creating pre-daily-cron-job backup of projectb database..."
        pg_dump projectb > $base/backup/dump_$(date +%Y.%m.%d-%H:%M:%S)
 }
+
 function pgdump_post() {
        log "Creating post-daily-cron-job backup of projectb database..."
+       cd $base/backup
        POSTDUMP=$base/backup/dump_$(date +%Y.%m.%d-%H:%M:%S)
        pg_dump projectb > $POSTDUMP
-       (cd $base/backup; ln -sf $POSTDUMP current)
+       ln -sf $POSTDUMP current
 }
 
 # Updating various files
@@ -273,7 +275,8 @@ function wb() {
 
 function expire() {
        log "Expiring old database dumps..."
-       (cd $base/backup; $scriptsdir/expire_dumps -d . -p -f "dump_*")
+       cd $base/backup
+       $scriptsdir/expire_dumps -d . -p -f "dump_*"
 }
 
 function reports() {
@@ -342,13 +345,12 @@ function aptftpcleanup() {
 
 function compress() {
        log "Compress old psql backups"
-       (cd $base/backup/
-        find -maxdepth 1 -mindepth 1 -type f -name 'dump_*' \! -name '*.bz2' \! -name '*.gz' -mtime +1 |
-        while read dumpname; do
-            echo "Compressing $dumpname"
-            bzip2 -9v "$dumpname"
-        done
-       )
+       cd $base/backup/
+    find -maxdepth 1 -mindepth 1 -type f -name 'dump_*' \! -name '*.bz2' \! -name '*.gz' -mtime +1 |
+    while read dumpname; do
+        echo "Compressing $dumpname"
+        bzip2 -9v "$dumpname"
+    done
 }
 
 function logstats() {
@@ -392,6 +394,10 @@ function stage() {
 
        debug "Now calling function ${FUNC}. Arguments: ${ARGS}. Timestamp: ${TS}"
 
+       # Make sure we are always at the same place. If a function wants to be elsewhere,
+       # it has to cd first!
+       cd ${configdir}
+
        if [ "${ERR}" = "false"]; then
                set +e
        fi
@@ -400,6 +406,9 @@ function stage() {
        # No matter what happened in the function, we make sure we have set -e default state back
        set -e
 
+       # Make sure we are always at the same place.
+       cd ${configdir}
+
        touch "${stagedir}/${FUNC}"
 
        if [ -n "${TIME}" ]; then