X-Git-Url: https://www.hackdaworld.org/gitweb/?a=blobdiff_plain;f=backup.sh;h=e2d401d71d2d2b56b33df76319deb0eade714423;hb=2bca8734ea99a41ef910a1b4174607c1171ee4c2;hp=fe6426f416a50a88919089694e20f38459ed83b0;hpb=07c133fec78ce26e0bbfdeb20f9a7cc8a7667b4a;p=scripts%2Fscripts.git diff --git a/backup.sh b/backup.sh index fe6426f..e2d401d 100755 --- a/backup.sh +++ b/backup.sh @@ -28,7 +28,15 @@ else exit 1 fi +echo this +if [ ! -z "$2" ] ; then +if [ "$2" = "-backup_dir" -a -d $3 ] ; then + echo "using $3 as a backup directory ..." + backup_dir=$3 +fi +fi +echo that # set kernel version(s) to store their .config if [ -d /usr/src/linux ] ; then kernel_num=`ls /usr/src/ | grep 'linux-' | awk -F- '{ print $2 }'` @@ -44,18 +52,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} @@ -157,7 +165,7 @@ if [ "$host" = "gate" ] ; then 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 +179,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