X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=backup.sh;h=b589589dcfdadf29cde66f0c9204d9cb04717fd4;hb=79177895d575e4e6b895ff4a7cdc0a0e25425cf5;hp=703a495c2787af7f238b67e484ec8d5a2aec0911;hpb=d4a76ec80199a4ad7d69dec8fa0f1c6030a25902;p=scripts%2Fscripts.git diff --git a/backup.sh b/backup.sh index 703a495..b589589 100755 --- a/backup.sh +++ b/backup.sh @@ -96,7 +96,7 @@ done for i in dhcpd.conf fstab hosts host.conf hosts.allow hosts.deny lilo.conf \ profile sendmail.cf resolv.conf exports fb.modes inetd.conf \ - xinetd.conf; do + xinetd.conf mp3user mp3db.conf; do if [ -f /etc/$i ] ; then echo "copying /etc/$i" cp /etc/$i ./etc @@ -165,16 +165,20 @@ if [ "$host" = "gate" ] ; then fi -# hackstation specific data +# hackstation / mobile / hdw / sparc specific data if [ "$host" = "hackstation" -o "$host" = "mobile" -o "$host" = "hdw" -o "$host" = "sparc" ] ; then # home of hackbard mkdir -p ./home/hackbard echo "copying home" - for i in projects software store; do + for i in software store; do [ -d /home/hackbard/$i ] && \ cp -r /home/hackbard/$i ./home/hackbard done + if [ "$host" = "hackstation" ]; then + [ -d /home/hackbard/projects ] && \ + cp -r /home/hackbard/projects ./home/hackbard + fi for i in xinitrc_evil xinitrc_wm .xinitrc GNUstep .Xauthority \ .Xdefaults .signature .directfbrc; do [ -f /home/hackbard/$i ] && \ @@ -182,6 +186,9 @@ if [ "$host" = "hackstation" -o "$host" = "mobile" -o "$host" = "hdw" -o "$host" done cp -r /home/hackbard/.ssh ./home/hackbard + # hunz config + [ -f /home/hackbard/hunz.sh ] && cp /home/hackbard/hunz.sh ./home/hackbard + fi