[BACK]Return to upload_release CVS log [TXT][DIR] Up to [local] / openbsd / update_openbsd

Diff for /openbsd/update_openbsd/upload_release between version 1.2 and 1.3

version 1.2, 2006/11/29 16:45:33 version 1.3, 2008/11/03 18:45:53
Line 1 
Line 1 
 #!/bin/sh  #!/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  RELEASEDIR=/usr/release
   
 rsync -avP $RELEASEDIR/ rrlhcmp30100:/home/ftp/pub/OpenBSD/`uname -r`/`machine`/  rsync -avP $RELEASEDIR/ rrlhcmp30100:/home/ftp/pub/OpenBSD/`uname -r`/`machine`/

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>