added mp3user and mp3db.conf file for backup
[scripts/scripts.git] / backup.sh
index 256b1d9..e477347 100755 (executable)
--- a/backup.sh
+++ b/backup.sh
@@ -37,7 +37,7 @@ fi
 
 # 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 }'`
+       kernel_num=`ls /usr/src/ | grep '^linux-' | sed 's/linux-//g'`
 fi
 
 
@@ -79,7 +79,7 @@ for i in $kernel_num; do
 done
 
 mkdir ./etc
-for i in conf opt ppp; do
+for i in conf opt ppp cups; do
        if [ -d /etc/$i ] ; then
                echo "copying /etc/$i"
                cp -r /etc/$i ./etc
@@ -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