X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=backup.sh;h=a47b3a19e5ed74f636ba7f85eb7e484e0cfba68f;hb=6f6432140cf0305ce60c6e80bf0e3d0c6edb0b94;hp=fe6426f416a50a88919089694e20f38459ed83b0;hpb=07c133fec78ce26e0bbfdeb20f9a7cc8a7667b4a;p=scripts%2Fscripts.git diff --git a/backup.sh b/backup.sh index fe6426f..a47b3a1 100755 --- a/backup.sh +++ b/backup.sh @@ -28,6 +28,12 @@ else exit 1 fi +if [ ! -z "$2" ] ; then +if [ "$2" = "-backup_dir" -a -d $3 ] ; then + echo "using $3 as a backup directory ..." + backup_dir=$3 +fi +fi # set kernel version(s) to store their .config if [ -d /usr/src/linux ] ; then @@ -44,18 +50,18 @@ elif [ -z "$1" ] ; then method="tar" else echo "aborting!" - echo "usage: $0 [tar|dir]" + echo "usage: $0 [tar|dir] (-backup_dir /foo/bar)" echo - echo "tar\t: creates an archive called backup_${backup_date}.tar.bz2" - echo "dir\t: creates just the directory backup_${backup_date}" - exit 1 + echo "tar: creates an archive called backup_${backup_date}.tar.bz2" + echo "dir: creates just the directory backup_${backup_date}" + exit 0 fi # creating backup if [ -d ${backup_dir}/${host}-backup-${backup_date} ] ; then echo "u already did a backup today! remove it manually first!" - exit 1 + exit 0 fi mkdir $backup_dir/${host}-backup-${backup_date} && cd ${backup_dir}/${host}-backup-${backup_date} @@ -89,7 +95,8 @@ for i in `ls -A /etc/conf`; do done for i in dhcpd.conf fstab hosts host.conf hosts.allow hosts.deny lilo.conf \ - profile sendmail.cf resolv.conf exports; do + profile sendmail.cf resolv.conf exports inetd.conf \ + xinetd.conf; do if [ -f /etc/$i ] ; then echo "copying /etc/$i" cp /etc/$i ./etc @@ -141,11 +148,12 @@ cd ${backup_dir}/${host}-backup-${backup_date} if [ "$host" = "gate" ] ; then # minimalist and mail stuff - mkdir -p minimalist_spool mail_admin mail_hackbard + mkdir -p minimalist_spool mail_admin mail_hackbard mail_mlist echo "copying minimalist and mail stuff" cp -r /opt/minimalist/spool/* ./minimalist_spool cp -r /home/hackbard/* ./mail_hackbard cp -r /home/admin/* ./mail_admin + cp /var/mail/mlist ./mail_mlist # www and cvs stuff mkdir chroot @@ -153,11 +161,12 @@ if [ "$host" = "gate" ] ; then echo "copying /chroot/$i" tar -cf ./chroot/$i.tar /chroot/$i done + tar -cf ./mlist-archive.tar /home/mlist/public_html fi # hackstation specific data -if [ "$host" = "hackstation" -o "$host" = "mobile" -o "$host" = "hdw" ] ; then +if [ "$host" = "hackstation" -o "$host" = "mobile" -o "$host" = "hdw" -o "$host" = "sparc" ] ; then # home of hackbard mkdir -p ./home/hackbard @@ -171,6 +180,7 @@ if [ "$host" = "hackstation" -o "$host" = "mobile" -o "$host" = "hdw" ] ; then [ -f /home/hackbard/$i ] && \ cp -r /home/hackbard/$i ./home/hackbard done + cp -r /home/hackbard/.ssh ./home/hackbard fi