=================================================================== RCS file: /cvs/openbsd/backup_config/backup_config,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- openbsd/backup_config/backup_config 2009/05/21 23:25:39 1.5 +++ openbsd/backup_config/backup_config 2009/05/21 23:41:08 1.6 @@ -1,5 +1,5 @@ #!/bin/sh -# $RedRiver: backup_config,v 1.4 2009/05/21 22:05:06 andrew Exp $ +# $RedRiver: backup_config,v 1.5 2009/05/21 22:25:39 andrew Exp $ if [ `id -u` -ne 0 ]; then echo You should run this as root! >&2 @@ -22,6 +22,11 @@ local _homesize=`du -ks /home/ | awk '{print $1}'` if [ $_homesize -lt $_maxhomesize ]; then _list="${_list} /home/" +else + echo Not backing up /home, too large! fi -tar czvf /tmp/${FILE}.tar.gz $_list +tar czf /tmp/${FILE}.tar.gz $_list + +echo backed up $_list +echo "\tto /etc/$FILE"