different backups for primary and secondary master origin
authorhackbard <hackbard>
Wed, 25 Apr 2007 08:06:22 +0000 (08:06 +0000)
committerhackbard <hackbard>
Wed, 25 Apr 2007 08:06:22 +0000 (08:06 +0000)
README
backup_hackdaworld.sh

diff --git a/README b/README
index f930e58..6da006c 100644 (file)
--- a/README
+++ b/README
@@ -6,6 +6,9 @@
 - backup.sh
   simple script making backups of important files and data.
 
+- backup_hackdaworld.sh
+  simple rsync script to do backups of hackdaworld.org & co
+
 - present_hdw_scripts.sh
   small script to copy the hdw-linux scripts on my http server
 
index 5545c28..121fca3 100755 (executable)
@@ -1,6 +1,13 @@
 REMOTE=sage.physik.uni-augsburg.de:/scratch/hackdaworld-${HOSTNAME}
-VARDIRS="/var/mail /var/spool /var/www /usr/lib/cgi-bin"
-ROOTDIRS="/etc /chroot /home /root"
+
+if [ "$HOSTNAME" = "primary" ] ; then
+       VARDIRS="/var/mail /var/spool /var/www /usr/lib/cgi-bin"
+       ROOTDIRS="/etc /chroot /home /root"
+else
+       VARDIRS=""
+       ROOTDIRS="/etc /home /root"
+fi
+
 
 for dir in $VARDIRS; do
        echo "syncing $dir ..."