=================================================================== RCS file: /cvs/openbsd/backup_config/backup_config,v retrieving revision 1.3 retrieving revision 1.5 diff -u -r1.3 -r1.5 --- openbsd/backup_config/backup_config 2009/05/21 23:03:05 1.3 +++ openbsd/backup_config/backup_config 2009/05/21 23:25:39 1.5 @@ -1,6 +1,11 @@ #!/bin/sh -# $RedRiver: backup_config,v 1.2 2009/05/21 21:54:34 andrew Exp $ +# $RedRiver: backup_config,v 1.4 2009/05/21 22:05:06 andrew Exp $ +if [ `id -u` -ne 0 ]; then + echo You should run this as root! >&2 + exit 255 +fi + FILE=`hostname -s`-`date +%Y-%m-%d` local _maxhomesize=20480 @@ -19,7 +24,4 @@ _list="${_list} /home/" fi -echo $_list - -# /home \ -#tar czvf /tmp/${FILE}.tar.gz $_list +tar czvf /tmp/${FILE}.tar.gz $_list