aboutsummaryrefslogtreecommitdiff
path: root/handlers/tar.in
diff options
context:
space:
mode:
authorintrigeri <intrigeri@boum.org>2007-10-12 17:06:09 +0000
committerintrigeri <intrigeri@boum.org>2007-10-12 17:06:09 +0000
commit579ea902ba24854b3c9acb307cda7e996e8e41a3 (patch)
tree373ce0a2242050dad65b84950520c6d44a9445fc /handlers/tar.in
parentbe75e4e6c536882c14db9a41c61585e7a9c045f6 (diff)
downloadbackupninja-579ea902ba24854b3c9acb307cda7e996e8e41a3.tar.gz
backupninja-579ea902ba24854b3c9acb307cda7e996e8e41a3.tar.bz2
fixed autotools build, broken since r466, inhandlers/Makefile.am
Diffstat (limited to 'handlers/tar.in')
-rw-r--r--handlers/tar.in79
1 files changed, 79 insertions, 0 deletions
diff --git a/handlers/tar.in b/handlers/tar.in
new file mode 100644
index 0000000..7f0d147
--- /dev/null
+++ b/handlers/tar.in
@@ -0,0 +1,79 @@
+# -*- mode: sh; sh-basic-offset: 3; indent-tabs-mode: nil; -*-
+#
+# tar handler script for backupninja
+
+getconf backupname `hostname --fqdn`
+getconf backupdir /var/backups/`hostname --fqdn`
+getconf compress bzip
+getconf includes "/etc /home /usr/local"
+getconf excludes "/tmp /proc /dev /sys /net /misc /media /srv /selinux"
+
+getconf TAR `which tar`
+getconf EXTENSION tar
+getconf DATE `which date`
+getconf DATEFORMAT "%Y.%m.%d-%H%M"
+
+# See if vservers are configured
+if [ "$vservers" = "yes" ]
+then
+ warning "vservers enabled, but tar does not support it!"
+fi
+
+if [ ! -d "$backupdir" ]
+then
+ mkdir -p "$backupdir" || fatal "Can not make directory $backupdir"
+fi
+
+if [ ! -w "$backupdir" ]
+then
+ fatal "Directory $backupdir is not writable"
+fi
+
+## DO IT #################################################
+#
+# here we grab a list of the packages installed and removed.
+#
+
+case $compress in
+ "compress")
+ compress_option="-Z"
+ EXTENSION="tar.compress"
+ ;;
+ "gzip")
+ compress_option="-z"
+ EXTENSION="tgz"
+ ;;
+ "bzip")
+ compress_option="-j"
+ EXTENSION="tar.bz2"
+ ;;
+ "none")
+ compress_option=""
+ ;;
+ *)
+ warning "Unknown compress filter ($tar_compress)"
+ compress_option=""
+ EXTENSION="tgz"
+ ;;
+esac
+
+exclude_options=""
+for i in $excludes
+do
+ exclude_options="$exclude_options --exclude $i"
+done
+
+debug "Running backup: " $TAR -c -p -v $compress_option $exclude_options \
+ -f "$backupdir/$backupname-"`$DATE "+$DATEFORMAT"`".$EXTENSION" \
+ $includes
+
+$TAR -c -p -v $compress_option $exclude_options \
+ -f "$backupdir/$backupname-"`$DATE "+$DATEFORMAT"`".$EXTENSION" \
+ $includes \
+ > "$backupdir/$backupname-"`$DATE "+$DATEFORMAT"`.list \
+ 2> "$backupdir/$backupname-"`$DATE "+$DATEFORMAT"`.err
+
+[ $? -ne 0 ] && fatal "Tar backup failed"
+
+
+