X-Git-Url: https://hackdaworld.org/gitweb/?a=blobdiff_plain;f=backup.sh;h=cbed041a8047980d3f68db156047e3c3bc0004fa;hb=856aed4ee23291972e9595a5f131feb9d4be1b3f;hp=857dcae175a83ec24cd011f8642fe002391fd302;hpb=8727fb3de34a33d5955b17c43b09e534e49d4e47;p=scripts%2Fscripts.git diff --git a/backup.sh b/backup.sh index 857dcae..cbed041 100755 --- a/backup.sh +++ b/backup.sh @@ -5,6 +5,7 @@ backup_date=`date | awk '{ print $3"."$2"."$6 }'` host=`hostname` +[ ! -d /mnt/nfs ] && mkdir -p /mnt/nfs # set the backup directory if [ "$host" = "gate" ] ; then @@ -77,9 +78,9 @@ echo "config stuff:" mkdir ./${host}-conf && cd ./${host}-conf for i in $kernel_num; do - if [ -f /usr/src/linux-${i}*/.config ] ; then + if [ -f /usr/src/linux-${i}/.config ] ; then echo "copying /usr/src/linux/.config" - cp /usr/src/linux-${i}*/.config ./$host-kernel-${i}-config + cp /usr/src/linux-${i}/.config ./$host-kernel-${i}-config fi done