=================================================================== RCS file: /cvs/openbsd/update_openbsd/upload_release,v retrieving revision 1.2 retrieving revision 1.6 diff -u -r1.2 -r1.6 --- openbsd/update_openbsd/upload_release 2006/11/29 16:45:33 1.2 +++ openbsd/update_openbsd/upload_release 2010/04/21 23:15:41 1.6 @@ -1,5 +1,22 @@ #!/bin/sh +RSYNC=`which rsync` + +if [ $? != 0 ]; then + sudo pkg_add -i rsync + RSYNC=`which rsync` + if [ $? != 0 ]; then + echo RSYNC not installed! + exit + fi +fi + RELEASEDIR=/usr/release -rsync -avP $RELEASEDIR/ rrlhcmp30100:/home/ftp/pub/OpenBSD/`uname -r`/`machine`/ +ls $RELEASEDIR | grep -v ^site > $RELEASEDIR/index.txt +rsync -avP $RELEASEDIR/ \ + us.holligan.net:/var/www/ftp/pub/OpenBSD/`uname -r`/`machine`/ + +ls $RELEASEDIR > $RELEASEDIR/index.txt +rsync -avP $RELEASEDIR/ \ + rrlhcmp30100:/home/ftp/pub/OpenBSD/`uname -r`/`machine`/