diff options
author | jkh <jkh@FreeBSD.org> | 1995-01-07 11:09:50 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 1995-01-07 11:09:50 +0000 |
commit | 9cb0c476901c639589449de8076927b8179d5f9b (patch) | |
tree | a6a0ed19cb6a2677460aff8190992ca88e22844b | |
parent | 2dffdc887d4c2e565014fcc37e1ca65f4f63b611 (diff) | |
download | FreeBSD-src-9cb0c476901c639589449de8076927b8179d5f9b.zip FreeBSD-src-9cb0c476901c639589449de8076927b8179d5f9b.tar.gz |
1. Add bump release number nag to start of release rule. Thx to Philippe
for suggestion!
2. Add Thailand to list of mirrors.
-rw-r--r-- | release/Makefile | 3 | ||||
-rw-r--r-- | release/instdist.sh | 7 |
2 files changed, 7 insertions, 3 deletions
diff --git a/release/Makefile b/release/Makefile index ec93d4f..a3a3879 100644 --- a/release/Makefile +++ b/release/Makefile @@ -1,4 +1,4 @@ -# $Id: Makefile,v 1.68 1994/12/23 02:25:32 jkh Exp $ +# $Id: Makefile,v 1.69 1994/12/23 03:29:58 jkh Exp $ # FLOPPY= fd0 @@ -128,6 +128,7 @@ release20: @echo "It will otherwise blow away your root directory!" @exit 1 .endif + @echo "Did you remember to increment the release number?" ( cd ${.CURDIR} ; ${MAKE} clean) -mkdir ${RELEASEDIR} chflags -R noschg ${RELEASEDIR}/. diff --git a/release/instdist.sh b/release/instdist.sh index e8c685c..69eb3a9 100644 --- a/release/instdist.sh +++ b/release/instdist.sh @@ -10,7 +10,7 @@ # putting your name on top after doing something trivial like reindenting # it, just to make it look like you wrote it!). # -# $Id: instdist.sh,v 1.46 1994/12/23 03:30:02 jkh Exp $ +# $Id: instdist.sh,v 1.47 1994/12/23 05:11:16 jkh Exp $ if [ "${_INSTINST_SH_LOADED_}" = "yes" ]; then return 0 @@ -96,8 +96,9 @@ Please select the site closest to you or \"other\" if you'd like\n\ to specify another choice. Also note that not all sites carry\n\ every possible distribution! Distributions other than the basic\n\ binary set are only guaranteed to be available from the Primary site.\n\ +If the first site selected doesn't respond, try one of the alternates.\n\ Please use arrow keys to scroll through all items." \ --1 -1 6 \ +-1 -1 5 \ "Primary" "ftp.freebsd.org" \ "Australia" "ftp.physics.usyd.edu.au" \ "Finland" "nic.funet.fi" \ @@ -114,6 +115,7 @@ Please use arrow keys to scroll through all items." \ "Netherlands" "ftp.nl.net" \ "Russia" "ftp.kiae.su" \ "Taiwan" "netbsd.csie.nctu.edu.tw" \ + "Thailand" "ftp.nectec.or.th" \ "UK" "ftp.demon.co.uk" \ "UK-2" "src.doc.ic.ac.uk" \ "UK-3" "unix.hensa.ac.uk" \ @@ -144,6 +146,7 @@ Please use arrow keys to scroll through all items." \ Netherlands) FTP_PATH="ftp://ftp.nl.net/pub/os/FreeBSD/${DISTNAME}" ;; Russia) FTP_PATH="ftp://ftp.kiae.su/FreeBSD/${DISTNAME}" ;; Taiwan) FTP_PATH="ftp://netbsd.csie.nctu.edu.tw/pub/FreeBSD/${DISTNAME}" ;; + Thailand) FTP_PATH="ftp.nectec.or.th/pub/FreeBSD/${DISTNAME}" ;; UK) FTP_PATH="ftp://ftp.demon.co.uk/pub/BSD/FreeBSD/${DISTNAME}" ;; UK-2) FTP_PATH="ftp://src.doc.ic.ac.uk/packages/unix/FreeBSD/${DISTNAME}" ;; UK-3) FTP_PATH="ftp://unix.hensa.ac.uk/pub/walnut.creek/FreeBSD/${DISTNAME}" ;; |