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

Annotation of openbsd/update_openbsd/upload_release, Revision 1.3

1.1       andrew      1: #!/bin/sh
                      2:
1.3     ! andrew      3: RSYNC=`which rsync`
        !             4:
        !             5: if [ $? != 0 ]; then
        !             6:         sudo pkg_add -i rsync
        !             7:         RSYNC=`which rsync`
        !             8:         if [ $? != 0 ]; then
        !             9:                 echo RSYNC not installed!
        !            10:                 exit
        !            11:         fi
        !            12: fi
        !            13:
1.1       andrew     14: RELEASEDIR=/usr/release
                     15:
1.2       andrew     16: rsync -avP $RELEASEDIR/ rrlhcmp30100:/home/ftp/pub/OpenBSD/`uname -r`/`machine`/

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