xref: /freebsd/usr.sbin/bsdinstall/scripts/mirrorselect (revision 39d4f2c6f0c99f7e25665e7408504b3d037a1d06)
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
296dcef0cfSNathan Whitehorn: ${DIALOG_OK=0}
306dcef0cfSNathan Whitehorn: ${DIALOG_CANCEL=1}
316dcef0cfSNathan Whitehorn: ${DIALOG_HELP=2}
326dcef0cfSNathan Whitehorn: ${DIALOG_EXTRA=3}
336dcef0cfSNathan Whitehorn: ${DIALOG_ITEM_HELP=4}
346dcef0cfSNathan Whitehorn: ${DIALOG_ESC=255}
356dcef0cfSNathan Whitehorn
366dcef0cfSNathan Whitehornexec 3>&1
376dcef0cfSNathan WhitehornMIRROR=`dialog --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!" \
406dcef0cfSNathan Whitehorn    0 0 0 \
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://ftp.il.freebsd.org 	"IPv6 Israel"\
456dcef0cfSNathan Whitehorn	ftp://ftp2.jp.freebsd.org 	"IPv6 Japan"\
46c9c00408SChristian Brueffer	ftp://ftp4.se.freebsd.org	"IPv6 Sweden"\
476dcef0cfSNathan Whitehorn	ftp://ftp4.us.freebsd.org 	"IPv6 USA"\
486dcef0cfSNathan Whitehorn	ftp://ftp2.tr.freebsd.org 	"IPv6 Turkey"\
496dcef0cfSNathan Whitehorn	ftp://ftp1.freebsd.org 	"Primary"\
506dcef0cfSNathan Whitehorn	ftp://ftp2.freebsd.org 	"Primary #2"\
516dcef0cfSNathan Whitehorn	ftp://ftp3.freebsd.org 	"Primary #3"\
526dcef0cfSNathan Whitehorn	ftp://ftp4.freebsd.org 	"Primary #4"\
536dcef0cfSNathan Whitehorn	ftp://ftp5.freebsd.org 	"Primary #5"\
546dcef0cfSNathan Whitehorn	ftp://ftp6.freebsd.org 	"Primary #6"\
556dcef0cfSNathan Whitehorn	ftp://ftp7.freebsd.org 	"Primary #7"\
566dcef0cfSNathan Whitehorn	ftp://ftp8.freebsd.org 	"Primary #8"\
576dcef0cfSNathan Whitehorn	ftp://ftp9.freebsd.org 	"Primary #9"\
586dcef0cfSNathan Whitehorn	ftp://ftp10.freebsd.org 	"Primary #10"\
596dcef0cfSNathan Whitehorn	ftp://ftp11.freebsd.org 	"Primary #11"\
606dcef0cfSNathan Whitehorn	ftp://ftp12.freebsd.org 	"Primary #12"\
616dcef0cfSNathan Whitehorn	ftp://ftp13.freebsd.org 	"Primary #13"\
626dcef0cfSNathan Whitehorn	ftp://ftp14.freebsd.org 	"Primary #14"\
636dcef0cfSNathan Whitehorn	ftp://ftp.ar.freebsd.org 	"Argentina"\
646dcef0cfSNathan Whitehorn	ftp://ftp.au.freebsd.org 	"Australia"\
656dcef0cfSNathan Whitehorn	ftp://ftp2.au.freebsd.org 	"Australia #2"\
666dcef0cfSNathan Whitehorn	ftp://ftp3.au.freebsd.org 	"Australia #3"\
676dcef0cfSNathan Whitehorn	ftp://ftp.at.freebsd.org 	"Austria"\
686dcef0cfSNathan Whitehorn	ftp://ftp2.at.freebsd.org 	"Austria #2"\
696dcef0cfSNathan Whitehorn	ftp://ftp.br.freebsd.org 	"Brazil"\
706dcef0cfSNathan Whitehorn	ftp://ftp2.br.freebsd.org 	"Brazil #2"\
716dcef0cfSNathan Whitehorn	ftp://ftp3.br.freebsd.org 	"Brazil #3"\
726dcef0cfSNathan Whitehorn	ftp://ftp4.br.freebsd.org 	"Brazil #4"\
736dcef0cfSNathan Whitehorn	ftp://ftp5.br.freebsd.org 	"Brazil #5"\
746dcef0cfSNathan Whitehorn	ftp://ftp6.br.freebsd.org 	"Brazil #6"\
756dcef0cfSNathan Whitehorn	ftp://ftp7.br.freebsd.org 	"Brazil #7"\
766dcef0cfSNathan Whitehorn	ftp://ftp.ca.freebsd.org 	"Canada"\
776dcef0cfSNathan Whitehorn	ftp://ftp.cn.freebsd.org 	"China"\
786dcef0cfSNathan Whitehorn	ftp://ftp2.cn.freebsd.org 	"China #2"\
796dcef0cfSNathan Whitehorn	ftp://ftp.hr.freebsd.org 	"Croatia"\
806dcef0cfSNathan Whitehorn	ftp://ftp.cz.freebsd.org 	"Czech Republic"\
816dcef0cfSNathan Whitehorn	ftp://ftp.dk.freebsd.org 	"Denmark"\
826dcef0cfSNathan Whitehorn	ftp://ftp2.dk.freebsd.org 	"Denmark #2"\
836dcef0cfSNathan Whitehorn	ftp://ftp.ee.freebsd.org 	"Estonia"\
846dcef0cfSNathan Whitehorn	ftp://ftp.fi.freebsd.org 	"Finland"\
856dcef0cfSNathan Whitehorn	ftp://ftp.fr.freebsd.org 	"France"\
86f58d163aSOllivier Robert	ftp://ftp2.fr.freebsd.org 	"IPv6 France #2"\
876dcef0cfSNathan Whitehorn	ftp://ftp3.fr.freebsd.org 	"France #3"\
884e355d39SOllivier Robert	ftp://ftp4.fr.freebsd.org 	"IPv6 France #4"\
896dcef0cfSNathan Whitehorn	ftp://ftp5.fr.freebsd.org 	"France #5"\
906dcef0cfSNathan Whitehorn	ftp://ftp6.fr.freebsd.org 	"France #6"\
91f58d163aSOllivier Robert	ftp://ftp8.fr.freebsd.org 	"IPv6 France #8"\
926dcef0cfSNathan Whitehorn	ftp://ftp.de.freebsd.org 	"Germany"\
936dcef0cfSNathan Whitehorn	ftp://ftp2.de.freebsd.org 	"Germany #2"\
946dcef0cfSNathan Whitehorn	ftp://ftp3.de.freebsd.org 	"Germany #3"\
956dcef0cfSNathan Whitehorn	ftp://ftp4.de.freebsd.org 	"Germany #4"\
966dcef0cfSNathan Whitehorn	ftp://ftp5.de.freebsd.org 	"Germany #5"\
976dcef0cfSNathan Whitehorn	ftp://ftp6.de.freebsd.org 	"Germany #6"\
986dcef0cfSNathan Whitehorn	ftp://ftp7.de.freebsd.org 	"Germany #7"\
996dcef0cfSNathan Whitehorn	ftp://ftp8.de.freebsd.org 	"Germany #8"\
1006dcef0cfSNathan Whitehorn	ftp://ftp.gr.freebsd.org 	"Greece"\
1016dcef0cfSNathan Whitehorn	ftp://ftp2.gr.freebsd.org 	"Greece #2"\
1026dcef0cfSNathan Whitehorn	ftp://ftp.hu.freebsd.org 	"Hungary"\
1036dcef0cfSNathan Whitehorn	ftp://ftp.is.freebsd.org 	"Iceland"\
1046dcef0cfSNathan Whitehorn	ftp://ftp.ie.freebsd.org 	"Ireland"\
1056dcef0cfSNathan Whitehorn	ftp://ftp2.ie.freebsd.org 	"Ireland #2"\
1066dcef0cfSNathan Whitehorn	ftp://ftp3.ie.freebsd.org 	"Ireland #3"\
1076dcef0cfSNathan Whitehorn	ftp://ftp.il.freebsd.org 	"Israel"\
1086dcef0cfSNathan Whitehorn	ftp://ftp.it.freebsd.org 	"Italy"\
1096dcef0cfSNathan Whitehorn	ftp://ftp.jp.freebsd.org 	"Japan"\
1106dcef0cfSNathan Whitehorn	ftp://ftp2.jp.freebsd.org 	"Japan #2"\
1116dcef0cfSNathan Whitehorn	ftp://ftp3.jp.freebsd.org 	"Japan #3"\
1126dcef0cfSNathan Whitehorn	ftp://ftp4.jp.freebsd.org 	"Japan #4"\
1136dcef0cfSNathan Whitehorn	ftp://ftp5.jp.freebsd.org 	"Japan #5"\
1146dcef0cfSNathan Whitehorn	ftp://ftp6.jp.freebsd.org 	"Japan #6"\
1156dcef0cfSNathan Whitehorn	ftp://ftp7.jp.freebsd.org 	"Japan #7"\
1166dcef0cfSNathan Whitehorn	ftp://ftp8.jp.freebsd.org 	"Japan #8"\
1176dcef0cfSNathan Whitehorn	ftp://ftp9.jp.freebsd.org 	"Japan #9"\
1186dcef0cfSNathan Whitehorn	ftp://ftp.kr.freebsd.org 	"Korea"\
1196dcef0cfSNathan Whitehorn	ftp://ftp2.kr.freebsd.org 	"Korea #2"\
1206dcef0cfSNathan Whitehorn	ftp://ftp.lt.freebsd.org 	"Lithuania"\
1216dcef0cfSNathan Whitehorn	ftp://ftp.nl.freebsd.org 	"Netherlands"\
1226dcef0cfSNathan Whitehorn	ftp://ftp2.nl.freebsd.org 	"Netherlands #2"\
1236dcef0cfSNathan Whitehorn	ftp://ftp.no.freebsd.org 	"Norway"\
1246dcef0cfSNathan Whitehorn	ftp://ftp3.no.freebsd.org 	"Norway #3"\
1256dcef0cfSNathan Whitehorn	ftp://ftp.pl.freebsd.org 	"Poland"\
1266dcef0cfSNathan Whitehorn	ftp://ftp2.pl.freebsd.org 	"Poland #2"\
1276dcef0cfSNathan Whitehorn	ftp://ftp5.pl.freebsd.org 	"Poland #5"\
1286dcef0cfSNathan Whitehorn	ftp://ftp.pt.freebsd.org 	"Portugal"\
1296dcef0cfSNathan Whitehorn	ftp://ftp2.pt.freebsd.org 	"Portugal #2"\
1306dcef0cfSNathan Whitehorn	ftp://ftp4.pt.freebsd.org 	"Portugal #4"\
1316dcef0cfSNathan Whitehorn	ftp://ftp.ro.freebsd.org 	"Romania"\
1326dcef0cfSNathan Whitehorn	ftp://ftp.ru.freebsd.org 	"Russia"\
1336dcef0cfSNathan Whitehorn	ftp://ftp2.ru.freebsd.org 	"Russia #2"\
1346dcef0cfSNathan Whitehorn	ftp://ftp3.ru.freebsd.org 	"Russia #3"\
1356dcef0cfSNathan Whitehorn	ftp://ftp4.ru.freebsd.org 	"Russia #4"\
1366dcef0cfSNathan Whitehorn	ftp://ftp.sg.freebsd.org 	"Singapore"\
1376dcef0cfSNathan Whitehorn	ftp://ftp.sk.freebsd.org 	"Slovak Republic"\
1386dcef0cfSNathan Whitehorn	ftp://ftp.si.freebsd.org 	"Slovenia"\
1396dcef0cfSNathan Whitehorn	ftp://ftp2.si.freebsd.org 	"Slovenia #2"\
1406dcef0cfSNathan Whitehorn	ftp://ftp.za.freebsd.org 	"South Africa"\
1416dcef0cfSNathan Whitehorn	ftp://ftp2.za.freebsd.org 	"South Africa #2"\
1426dcef0cfSNathan Whitehorn	ftp://ftp3.za.freebsd.org 	"South Africa #3"\
1436dcef0cfSNathan Whitehorn	ftp://ftp4.za.freebsd.org 	"South Africa #4"\
1446dcef0cfSNathan Whitehorn	ftp://ftp.es.freebsd.org 	"Spain"\
1456dcef0cfSNathan Whitehorn	ftp://ftp2.es.freebsd.org 	"Spain #2"\
1466dcef0cfSNathan Whitehorn	ftp://ftp3.es.freebsd.org 	"Spain #3"\
1476dcef0cfSNathan Whitehorn	ftp://ftp.se.freebsd.org 	"Sweden"\
1486dcef0cfSNathan Whitehorn	ftp://ftp2.se.freebsd.org 	"Sweden #2"\
1496dcef0cfSNathan Whitehorn	ftp://ftp3.se.freebsd.org 	"Sweden #3"\
1506dcef0cfSNathan Whitehorn	ftp://ftp4.se.freebsd.org 	"Sweden #4"\
1516dcef0cfSNathan Whitehorn	ftp://ftp5.se.freebsd.org 	"Sweden #5"\
152b8c337a3SJoel Dahl	ftp://ftp6.se.freebsd.org 	"Sweden #6"\
1536dcef0cfSNathan Whitehorn	ftp://ftp.ch.freebsd.org 	"Switzerland"\
1546dcef0cfSNathan Whitehorn	ftp://ftp2.ch.freebsd.org 	"Switzerland #2"\
1556dcef0cfSNathan Whitehorn	ftp://ftp.tw.freebsd.org 	"Taiwan"\
1566dcef0cfSNathan Whitehorn	ftp://ftp2.tw.freebsd.org 	"Taiwan #2"\
1576dcef0cfSNathan Whitehorn	ftp://ftp3.tw.freebsd.org 	"Taiwan #3"\
1586dcef0cfSNathan Whitehorn	ftp://ftp4.tw.freebsd.org 	"Taiwan #4"\
1596dcef0cfSNathan Whitehorn	ftp://ftp6.tw.freebsd.org 	"Taiwan #6"\
1606dcef0cfSNathan Whitehorn	ftp://ftp11.tw.freebsd.org 	"Taiwan #11"\
1616dcef0cfSNathan Whitehorn	ftp://ftp.tr.freebsd.org 	"Turkey"\
1626dcef0cfSNathan Whitehorn	ftp://ftp2.tr.freebsd.org 	"Turkey #2"\
1636dcef0cfSNathan Whitehorn	ftp://ftp.uk.freebsd.org 	"UK"\
1646dcef0cfSNathan Whitehorn	ftp://ftp2.uk.freebsd.org 	"UK #2"\
1656dcef0cfSNathan Whitehorn	ftp://ftp3.uk.freebsd.org 	"UK #3"\
1666dcef0cfSNathan Whitehorn	ftp://ftp4.uk.freebsd.org 	"UK #4"\
1676dcef0cfSNathan Whitehorn	ftp://ftp5.uk.freebsd.org 	"UK #5"\
1686dcef0cfSNathan Whitehorn	ftp://ftp6.uk.freebsd.org 	"UK #6"\
1696dcef0cfSNathan Whitehorn	ftp://ftp.ua.freebsd.org 	"Ukraine"\
1706dcef0cfSNathan Whitehorn	ftp://ftp2.ua.freebsd.org 	"Ukraine #2"\
1716dcef0cfSNathan Whitehorn	ftp://ftp5.ua.freebsd.org 	"Ukraine #5"\
1726dcef0cfSNathan Whitehorn	ftp://ftp6.ua.freebsd.org 	"Ukraine #6"\
1736dcef0cfSNathan Whitehorn	ftp://ftp7.ua.freebsd.org 	"Ukraine #7"\
1746dcef0cfSNathan Whitehorn	ftp://ftp8.ua.freebsd.org 	"Ukraine #8"\
1756dcef0cfSNathan Whitehorn	ftp://ftp1.us.freebsd.org 	"USA #1"\
1766dcef0cfSNathan Whitehorn	ftp://ftp2.us.freebsd.org 	"USA #2"\
1776dcef0cfSNathan Whitehorn	ftp://ftp3.us.freebsd.org 	"USA #3"\
1786dcef0cfSNathan Whitehorn	ftp://ftp4.us.freebsd.org 	"USA #4"\
1796dcef0cfSNathan Whitehorn	ftp://ftp5.us.freebsd.org 	"USA #5"\
1806dcef0cfSNathan Whitehorn	ftp://ftp6.us.freebsd.org 	"USA #6"\
1816dcef0cfSNathan Whitehorn	ftp://ftp7.us.freebsd.org 	"USA #7"\
1826dcef0cfSNathan Whitehorn	ftp://ftp8.us.freebsd.org 	"USA #8"\
1836dcef0cfSNathan Whitehorn	ftp://ftp9.us.freebsd.org 	"USA #9"\
1846dcef0cfSNathan Whitehorn	ftp://ftp10.us.freebsd.org 	"USA #10"\
1856dcef0cfSNathan Whitehorn	ftp://ftp11.us.freebsd.org 	"USA #11"\
1866dcef0cfSNathan Whitehorn	ftp://ftp12.us.freebsd.org 	"USA #12"\
1876dcef0cfSNathan Whitehorn	ftp://ftp13.us.freebsd.org 	"USA #13"\
1886dcef0cfSNathan Whitehorn	ftp://ftp14.us.freebsd.org 	"USA #14"\
1896dcef0cfSNathan Whitehorn	ftp://ftp15.us.freebsd.org 	"USA #15"\
1906dcef0cfSNathan Whitehorn    2>&1 1>&3`
1916dcef0cfSNathan WhitehornMIRROR_BUTTON=$?
1926dcef0cfSNathan Whitehornexec 3>&-
1936dcef0cfSNathan Whitehorn
194*39d4f2c6SGlen Barber_UNAME_R=`uname -r`
195*39d4f2c6SGlen Barber
196*39d4f2c6SGlen Barbercase ${_UNAME_R} in
197*39d4f2c6SGlen Barber	*-CURRENT|*-STABLE|*-PRERELEASE|*-RC*)
198*39d4f2c6SGlen Barber		RELDIR="snapshots"
199*39d4f2c6SGlen Barber		;;
200*39d4f2c6SGlen Barber	*)
201*39d4f2c6SGlen Barber		RELDIR="releases"
202*39d4f2c6SGlen Barber		;;
203*39d4f2c6SGlen Barberesac
204*39d4f2c6SGlen Barber
205*39d4f2c6SGlen BarberBSDINSTALL_DISTSITE="$MIRROR/pub/FreeBSD/${RELDIR}/`uname -m`/`uname -p`/${_UNAME_R}"
2066dcef0cfSNathan Whitehorn
2076dcef0cfSNathan Whitehorncase $MIRROR_BUTTON in
2086dcef0cfSNathan Whitehorn$DIALOG_CANCEL)
2096dcef0cfSNathan Whitehorn	exit 1
2106dcef0cfSNathan Whitehorn	;;
2116dcef0cfSNathan Whitehorn$DIALOG_OK)
2126dcef0cfSNathan Whitehorn	;;
2136dcef0cfSNathan Whitehorn$DIALOG_EXTRA)
2146dcef0cfSNathan Whitehorn	exec 3>&1
2156dcef0cfSNathan Whitehorn	BSDINSTALL_DISTSITE=`dialog --backtitle "FreeBSD Installer" \
2166dcef0cfSNathan Whitehorn	    --title "Mirror Selection" \
2176dcef0cfSNathan Whitehorn	    --inputbox "Please enter the URL to an alternate FreeBSD mirror:" \
2186dcef0cfSNathan Whitehorn	    0 0 "$BSDINSTALL_DISTSITE" 2>&1 1>&3`
2196dcef0cfSNathan Whitehorn	MIRROR_BUTTON=$?
2206dcef0cfSNathan Whitehorn	exec 3>&-
2216dcef0cfSNathan Whitehorn	test $MIRROR_BUTTON -eq 0 || exec $0 $@
2226dcef0cfSNathan Whitehorn	;;
2236dcef0cfSNathan Whitehornesac
2246dcef0cfSNathan Whitehorn
2256dcef0cfSNathan Whitehornexport BSDINSTALL_DISTSITE
2266dcef0cfSNathan Whitehornecho $BSDINSTALL_DISTSITE >&2
227