xref: /freebsd/usr.sbin/bsdinstall/scripts/mirrorselect (revision bbddd8888aa9119746d3af3af98800b359ab3b40)
16dcef0cfSNathan Whitehorn#!/bin/sh
26dcef0cfSNathan Whitehorn#-
36dcef0cfSNathan Whitehorn# Copyright (c) 2011 Nathan Whitehorn
46dcef0cfSNathan Whitehorn# All rights reserved.
56dcef0cfSNathan Whitehorn#
66dcef0cfSNathan Whitehorn# Redistribution and use in source and binary forms, with or without
76dcef0cfSNathan Whitehorn# modification, are permitted provided that the following conditions
86dcef0cfSNathan Whitehorn# are met:
96dcef0cfSNathan Whitehorn# 1. Redistributions of source code must retain the above copyright
106dcef0cfSNathan Whitehorn#    notice, this list of conditions and the following disclaimer.
116dcef0cfSNathan Whitehorn# 2. Redistributions in binary form must reproduce the above copyright
126dcef0cfSNathan Whitehorn#    notice, this list of conditions and the following disclaimer in the
136dcef0cfSNathan Whitehorn#    documentation and/or other materials provided with the distribution.
146dcef0cfSNathan Whitehorn#
156dcef0cfSNathan Whitehorn# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
166dcef0cfSNathan Whitehorn# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
176dcef0cfSNathan Whitehorn# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
186dcef0cfSNathan Whitehorn# ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
196dcef0cfSNathan Whitehorn# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
206dcef0cfSNathan Whitehorn# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
216dcef0cfSNathan Whitehorn# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
226dcef0cfSNathan Whitehorn# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
236dcef0cfSNathan Whitehorn# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
246dcef0cfSNathan Whitehorn# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
256dcef0cfSNathan Whitehorn# SUCH DAMAGE.
266dcef0cfSNathan Whitehorn#
276dcef0cfSNathan Whitehorn# $FreeBSD$
286dcef0cfSNathan Whitehorn
29*bbddd888SAlfonso S. Siciliano: ${BSDDIALOG_OK=0}
30*bbddd888SAlfonso S. Siciliano: ${BSDDIALOG_CANCEL=1}
31*bbddd888SAlfonso S. Siciliano: ${BSDDIALOG_HELP=2}
32*bbddd888SAlfonso S. Siciliano: ${BSDDIALOG_EXTRA=3}
33*bbddd888SAlfonso S. Siciliano: ${BSDDIALOG_ESC=5}
34*bbddd888SAlfonso S. Siciliano: ${BSDDIALOG_ERROR=255}
356dcef0cfSNathan Whitehorn
366dcef0cfSNathan Whitehornexec 3>&1
37*bbddd888SAlfonso S. SicilianoMIRROR=`bsddialog --backtitle "FreeBSD Installer" \
386dcef0cfSNathan Whitehorn    --title "Mirror Selection" --extra-button --extra-label "Other" \
396dcef0cfSNathan Whitehorn    --menu "Please select the site closest to you or \"other\" if you'd like to specify a different choice.  Also note that not every site listed here carries more than the base distribution kits. Only Primary sites are guaranteed to carry the full range of possible distributions. Select a site that's close!" \
40*bbddd888SAlfonso S. Siciliano    0 0 16 \
416dcef0cfSNathan Whitehorn	ftp://ftp.freebsd.org	"Main Site"\
426dcef0cfSNathan Whitehorn	ftp://ftp.freebsd.org 	"IPv6 Main Site"\
436dcef0cfSNathan Whitehorn	ftp://ftp3.ie.freebsd.org 	"IPv6 Ireland"\
446dcef0cfSNathan Whitehorn	ftp://ftp2.jp.freebsd.org 	"IPv6 Japan"\
45c9c00408SChristian Brueffer	ftp://ftp4.se.freebsd.org	"IPv6 Sweden"\
466dcef0cfSNathan Whitehorn	ftp://ftp4.us.freebsd.org 	"IPv6 USA"\
476dcef0cfSNathan Whitehorn	ftp://ftp1.freebsd.org 	"Primary"\
486dcef0cfSNathan Whitehorn	ftp://ftp2.freebsd.org 	"Primary #2"\
496dcef0cfSNathan Whitehorn	ftp://ftp3.freebsd.org 	"Primary #3"\
506dcef0cfSNathan Whitehorn	ftp://ftp4.freebsd.org 	"Primary #4"\
516dcef0cfSNathan Whitehorn	ftp://ftp5.freebsd.org 	"Primary #5"\
526dcef0cfSNathan Whitehorn	ftp://ftp6.freebsd.org 	"Primary #6"\
536dcef0cfSNathan Whitehorn	ftp://ftp7.freebsd.org 	"Primary #7"\
546dcef0cfSNathan Whitehorn	ftp://ftp10.freebsd.org 	"Primary #10"\
556dcef0cfSNathan Whitehorn	ftp://ftp11.freebsd.org 	"Primary #11"\
566dcef0cfSNathan Whitehorn	ftp://ftp12.freebsd.org 	"Primary #12"\
576dcef0cfSNathan Whitehorn	ftp://ftp13.freebsd.org 	"Primary #13"\
586dcef0cfSNathan Whitehorn	ftp://ftp14.freebsd.org 	"Primary #14"\
596dcef0cfSNathan Whitehorn	ftp://ftp.au.freebsd.org 	"Australia"\
606dcef0cfSNathan Whitehorn	ftp://ftp2.au.freebsd.org 	"Australia #2"\
616dcef0cfSNathan Whitehorn	ftp://ftp3.au.freebsd.org 	"Australia #3"\
626dcef0cfSNathan Whitehorn	ftp://ftp.at.freebsd.org 	"Austria"\
636dcef0cfSNathan Whitehorn	ftp://ftp2.br.freebsd.org 	"Brazil #2"\
646dcef0cfSNathan Whitehorn	ftp://ftp3.br.freebsd.org 	"Brazil #3"\
656dcef0cfSNathan Whitehorn	ftp://ftp4.br.freebsd.org 	"Brazil #4"\
667daa45beSPhilip Paeps	ftp://ftp.bg.freebsd.org 	"Bulgaria"\
676dcef0cfSNathan Whitehorn	ftp://ftp.cn.freebsd.org 	"China"\
686dcef0cfSNathan Whitehorn	ftp://ftp.cz.freebsd.org 	"Czech Republic"\
696dcef0cfSNathan Whitehorn	ftp://ftp.dk.freebsd.org 	"Denmark"\
706dcef0cfSNathan Whitehorn	ftp://ftp.fi.freebsd.org 	"Finland"\
716dcef0cfSNathan Whitehorn	ftp://ftp.fr.freebsd.org 	"France"\
726dcef0cfSNathan Whitehorn	ftp://ftp3.fr.freebsd.org 	"France #3"\
734e355d39SOllivier Robert	ftp://ftp4.fr.freebsd.org 	"IPv6 France #4"\
746dcef0cfSNathan Whitehorn	ftp://ftp5.fr.freebsd.org 	"France #5"\
756dcef0cfSNathan Whitehorn	ftp://ftp6.fr.freebsd.org 	"France #6"\
76a6df4068SGavin Atkinson	ftp://ftp7.fr.freebsd.org 	"France #7"\
77f58d163aSOllivier Robert	ftp://ftp8.fr.freebsd.org 	"IPv6 France #8"\
786dcef0cfSNathan Whitehorn	ftp://ftp.de.freebsd.org 	"Germany"\
796dcef0cfSNathan Whitehorn	ftp://ftp2.de.freebsd.org 	"Germany #2"\
806dcef0cfSNathan Whitehorn	ftp://ftp4.de.freebsd.org 	"Germany #4"\
816dcef0cfSNathan Whitehorn	ftp://ftp5.de.freebsd.org 	"Germany #5"\
826dcef0cfSNathan Whitehorn	ftp://ftp7.de.freebsd.org 	"Germany #7"\
836dcef0cfSNathan Whitehorn	ftp://ftp8.de.freebsd.org 	"Germany #8"\
846dcef0cfSNathan Whitehorn	ftp://ftp.gr.freebsd.org 	"Greece"\
856dcef0cfSNathan Whitehorn	ftp://ftp2.gr.freebsd.org 	"Greece #2"\
866dcef0cfSNathan Whitehorn	ftp://ftp3.ie.freebsd.org 	"Ireland #3"\
876dcef0cfSNathan Whitehorn	ftp://ftp.jp.freebsd.org 	"Japan"\
886dcef0cfSNathan Whitehorn	ftp://ftp2.jp.freebsd.org 	"Japan #2"\
896dcef0cfSNathan Whitehorn	ftp://ftp3.jp.freebsd.org 	"Japan #3"\
906dcef0cfSNathan Whitehorn	ftp://ftp4.jp.freebsd.org 	"Japan #4"\
916dcef0cfSNathan Whitehorn	ftp://ftp5.jp.freebsd.org 	"Japan #5"\
926dcef0cfSNathan Whitehorn	ftp://ftp6.jp.freebsd.org 	"Japan #6"\
936dcef0cfSNathan Whitehorn	ftp://ftp7.jp.freebsd.org 	"Japan #7"\
946dcef0cfSNathan Whitehorn	ftp://ftp8.jp.freebsd.org 	"Japan #8"\
956dcef0cfSNathan Whitehorn	ftp://ftp9.jp.freebsd.org 	"Japan #9"\
966dcef0cfSNathan Whitehorn	ftp://ftp.kr.freebsd.org 	"Korea"\
976dcef0cfSNathan Whitehorn	ftp://ftp2.kr.freebsd.org 	"Korea #2"\
98a6df4068SGavin Atkinson	ftp://ftp.lv.freebsd.org 	"Latvia"\
996dcef0cfSNathan Whitehorn	ftp://ftp.nl.freebsd.org 	"Netherlands"\
1006dcef0cfSNathan Whitehorn	ftp://ftp2.nl.freebsd.org 	"Netherlands #2"\
101a6df4068SGavin Atkinson	ftp://ftp.nz.freebsd.org 	"New Zealand"\
1026dcef0cfSNathan Whitehorn	ftp://ftp.no.freebsd.org 	"Norway"\
1036dcef0cfSNathan Whitehorn	ftp://ftp.pl.freebsd.org 	"Poland"\
1046dcef0cfSNathan Whitehorn	ftp://ftp.ru.freebsd.org 	"Russia"\
1056dcef0cfSNathan Whitehorn	ftp://ftp2.ru.freebsd.org 	"Russia #2"\
106a6df4068SGavin Atkinson	ftp://ftp5.ru.freebsd.org 	"Russia #5"\
107a6df4068SGavin Atkinson	ftp://ftp6.ru.freebsd.org 	"Russia #6"\
1086dcef0cfSNathan Whitehorn	ftp://ftp.sk.freebsd.org 	"Slovak Republic"\
109a6df4068SGavin Atkinson	ftp://ftp2.sk.freebsd.org 	"Slovak Republic #2"\
1106dcef0cfSNathan Whitehorn	ftp://ftp.si.freebsd.org 	"Slovenia"\
1116dcef0cfSNathan Whitehorn	ftp://ftp.za.freebsd.org 	"South Africa"\
1126dcef0cfSNathan Whitehorn	ftp://ftp2.za.freebsd.org 	"South Africa #2"\
1136dcef0cfSNathan Whitehorn	ftp://ftp4.za.freebsd.org 	"South Africa #4"\
1146dcef0cfSNathan Whitehorn	ftp://ftp.se.freebsd.org 	"Sweden"\
1156dcef0cfSNathan Whitehorn	ftp://ftp4.se.freebsd.org 	"Sweden #4"\
1166dcef0cfSNathan Whitehorn	ftp://ftp.ch.freebsd.org 	"Switzerland"\
1176dcef0cfSNathan Whitehorn	ftp://ftp.tw.freebsd.org 	"Taiwan"\
1186dcef0cfSNathan Whitehorn	ftp://ftp2.tw.freebsd.org 	"Taiwan #2"\
1196dcef0cfSNathan Whitehorn	ftp://ftp3.tw.freebsd.org 	"Taiwan #3"\
1206dcef0cfSNathan Whitehorn	ftp://ftp4.tw.freebsd.org 	"Taiwan #4"\
1216dcef0cfSNathan Whitehorn	ftp://ftp6.tw.freebsd.org 	"Taiwan #6"\
1226dcef0cfSNathan Whitehorn	ftp://ftp11.tw.freebsd.org 	"Taiwan #11"\
1236dcef0cfSNathan Whitehorn	ftp://ftp.uk.freebsd.org 	"UK"\
1246dcef0cfSNathan Whitehorn	ftp://ftp2.uk.freebsd.org 	"UK #2"\
1256dcef0cfSNathan Whitehorn	ftp://ftp3.uk.freebsd.org 	"UK #3"\
1266dcef0cfSNathan Whitehorn	ftp://ftp4.uk.freebsd.org 	"UK #4"\
1276dcef0cfSNathan Whitehorn	ftp://ftp5.uk.freebsd.org 	"UK #5"\
1286dcef0cfSNathan Whitehorn	ftp://ftp.ua.freebsd.org 	"Ukraine"\
1296dcef0cfSNathan Whitehorn	ftp://ftp1.us.freebsd.org 	"USA #1"\
1306dcef0cfSNathan Whitehorn	ftp://ftp2.us.freebsd.org 	"USA #2"\
1316dcef0cfSNathan Whitehorn	ftp://ftp3.us.freebsd.org 	"USA #3"\
1326dcef0cfSNathan Whitehorn	ftp://ftp4.us.freebsd.org 	"USA #4"\
1336dcef0cfSNathan Whitehorn	ftp://ftp5.us.freebsd.org 	"USA #5"\
1346dcef0cfSNathan Whitehorn	ftp://ftp6.us.freebsd.org 	"USA #6"\
1356dcef0cfSNathan Whitehorn	ftp://ftp8.us.freebsd.org 	"USA #8"\
1366dcef0cfSNathan Whitehorn	ftp://ftp10.us.freebsd.org 	"USA #10"\
1376dcef0cfSNathan Whitehorn	ftp://ftp11.us.freebsd.org 	"USA #11"\
1386dcef0cfSNathan Whitehorn	ftp://ftp13.us.freebsd.org 	"USA #13"\
1396dcef0cfSNathan Whitehorn	ftp://ftp14.us.freebsd.org 	"USA #14"\
1406dcef0cfSNathan Whitehorn	ftp://ftp15.us.freebsd.org 	"USA #15"\
1416dcef0cfSNathan Whitehorn    2>&1 1>&3`
1426dcef0cfSNathan WhitehornMIRROR_BUTTON=$?
1436dcef0cfSNathan Whitehornexec 3>&-
1446dcef0cfSNathan Whitehorn
14539d4f2c6SGlen Barber_UNAME_R=`uname -r`
146a382af08SDag-Erling Smørgrav_UNAME_R=${_UNAME_R%-p*}
14739d4f2c6SGlen Barber
14839d4f2c6SGlen Barbercase ${_UNAME_R} in
1492ba8b5b3SGlen Barber	*-ALPHA*|*-CURRENT|*-STABLE|*-PRERELEASE)
15039d4f2c6SGlen Barber		RELDIR="snapshots"
15139d4f2c6SGlen Barber		;;
15239d4f2c6SGlen Barber	*)
15339d4f2c6SGlen Barber		RELDIR="releases"
15439d4f2c6SGlen Barber		;;
15539d4f2c6SGlen Barberesac
15639d4f2c6SGlen Barber
15739d4f2c6SGlen BarberBSDINSTALL_DISTSITE="$MIRROR/pub/FreeBSD/${RELDIR}/`uname -m`/`uname -p`/${_UNAME_R}"
1586dcef0cfSNathan Whitehorn
1596dcef0cfSNathan Whitehorncase $MIRROR_BUTTON in
160*bbddd888SAlfonso S. Siciliano$BSDDIALOG_ERROR | $BSDDIALOG_CANCEL | $BSDDIALOG_ESC)
1616dcef0cfSNathan Whitehorn	exit 1
1626dcef0cfSNathan Whitehorn	;;
163*bbddd888SAlfonso S. Siciliano$BSDDIALOG_OK)
1646dcef0cfSNathan Whitehorn	;;
165*bbddd888SAlfonso S. Siciliano$BSDDIALOG_EXTRA)
1666dcef0cfSNathan Whitehorn	exec 3>&1
167*bbddd888SAlfonso S. Siciliano	BSDINSTALL_DISTSITE=`bsddialog --backtitle "FreeBSD Installer" \
1686dcef0cfSNathan Whitehorn	    --title "Mirror Selection" \
1696dcef0cfSNathan Whitehorn	    --inputbox "Please enter the URL to an alternate FreeBSD mirror:" \
170*bbddd888SAlfonso S. Siciliano	    0 74 "$BSDINSTALL_DISTSITE" 2>&1 1>&3`
1716dcef0cfSNathan Whitehorn	MIRROR_BUTTON=$?
1726dcef0cfSNathan Whitehorn	exec 3>&-
173*bbddd888SAlfonso S. Siciliano	test $MIRROR_BUTTON -eq $BSDDIALOG_OK || exec $0 $@
1746dcef0cfSNathan Whitehorn	;;
1756dcef0cfSNathan Whitehornesac
1766dcef0cfSNathan Whitehorn
1776dcef0cfSNathan Whitehornexport BSDINSTALL_DISTSITE
1786dcef0cfSNathan Whitehornecho $BSDINSTALL_DISTSITE >&2
179