xref: /freebsd/usr.sbin/bsdinstall/scripts/mirrorselect (revision cc42ef5328963ee55c3305b136e9a86145f24594)
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*cc42ef53SBrad DavisBSDCFG_SHARE="/usr/share/bsdconfig"
30*cc42ef53SBrad Davis. $BSDCFG_SHARE/common.subr || exit 1
31*cc42ef53SBrad Davis
32bbddd888SAlfonso S. Siciliano: ${BSDDIALOG_OK=0}
33bbddd888SAlfonso S. Siciliano: ${BSDDIALOG_CANCEL=1}
34bbddd888SAlfonso S. Siciliano: ${BSDDIALOG_HELP=2}
35bbddd888SAlfonso S. Siciliano: ${BSDDIALOG_EXTRA=3}
36bbddd888SAlfonso S. Siciliano: ${BSDDIALOG_ESC=5}
37bbddd888SAlfonso S. Siciliano: ${BSDDIALOG_ERROR=255}
386dcef0cfSNathan Whitehorn
396dcef0cfSNathan Whitehornexec 3>&1
40*cc42ef53SBrad DavisMIRROR=`bsddialog --backtitle "$OSNAME Installer" \
416dcef0cfSNathan Whitehorn    --title "Mirror Selection" --extra-button --extra-label "Other" \
426dcef0cfSNathan 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!" \
43bbddd888SAlfonso S. Siciliano    0 0 16 \
446dcef0cfSNathan Whitehorn	ftp://ftp.freebsd.org	"Main Site"\
456dcef0cfSNathan Whitehorn	ftp://ftp.freebsd.org 	"IPv6 Main Site"\
466dcef0cfSNathan Whitehorn	ftp://ftp3.ie.freebsd.org 	"IPv6 Ireland"\
476dcef0cfSNathan Whitehorn	ftp://ftp2.jp.freebsd.org 	"IPv6 Japan"\
48c9c00408SChristian Brueffer	ftp://ftp4.se.freebsd.org	"IPv6 Sweden"\
496dcef0cfSNathan Whitehorn	ftp://ftp4.us.freebsd.org 	"IPv6 USA"\
506dcef0cfSNathan Whitehorn	ftp://ftp1.freebsd.org 	"Primary"\
516dcef0cfSNathan Whitehorn	ftp://ftp2.freebsd.org 	"Primary #2"\
526dcef0cfSNathan Whitehorn	ftp://ftp3.freebsd.org 	"Primary #3"\
536dcef0cfSNathan Whitehorn	ftp://ftp4.freebsd.org 	"Primary #4"\
546dcef0cfSNathan Whitehorn	ftp://ftp5.freebsd.org 	"Primary #5"\
556dcef0cfSNathan Whitehorn	ftp://ftp6.freebsd.org 	"Primary #6"\
566dcef0cfSNathan Whitehorn	ftp://ftp7.freebsd.org 	"Primary #7"\
576dcef0cfSNathan Whitehorn	ftp://ftp10.freebsd.org 	"Primary #10"\
586dcef0cfSNathan Whitehorn	ftp://ftp11.freebsd.org 	"Primary #11"\
596dcef0cfSNathan Whitehorn	ftp://ftp12.freebsd.org 	"Primary #12"\
606dcef0cfSNathan Whitehorn	ftp://ftp13.freebsd.org 	"Primary #13"\
616dcef0cfSNathan Whitehorn	ftp://ftp14.freebsd.org 	"Primary #14"\
626dcef0cfSNathan Whitehorn	ftp://ftp.au.freebsd.org 	"Australia"\
636dcef0cfSNathan Whitehorn	ftp://ftp2.au.freebsd.org 	"Australia #2"\
646dcef0cfSNathan Whitehorn	ftp://ftp3.au.freebsd.org 	"Australia #3"\
656dcef0cfSNathan Whitehorn	ftp://ftp.at.freebsd.org 	"Austria"\
666dcef0cfSNathan Whitehorn	ftp://ftp2.br.freebsd.org 	"Brazil #2"\
676dcef0cfSNathan Whitehorn	ftp://ftp3.br.freebsd.org 	"Brazil #3"\
686dcef0cfSNathan Whitehorn	ftp://ftp4.br.freebsd.org 	"Brazil #4"\
697daa45beSPhilip Paeps	ftp://ftp.bg.freebsd.org 	"Bulgaria"\
706dcef0cfSNathan Whitehorn	ftp://ftp.cn.freebsd.org 	"China"\
716dcef0cfSNathan Whitehorn	ftp://ftp.cz.freebsd.org 	"Czech Republic"\
726dcef0cfSNathan Whitehorn	ftp://ftp.dk.freebsd.org 	"Denmark"\
736dcef0cfSNathan Whitehorn	ftp://ftp.fi.freebsd.org 	"Finland"\
746dcef0cfSNathan Whitehorn	ftp://ftp.fr.freebsd.org 	"France"\
756dcef0cfSNathan Whitehorn	ftp://ftp3.fr.freebsd.org 	"France #3"\
764e355d39SOllivier Robert	ftp://ftp4.fr.freebsd.org 	"IPv6 France #4"\
776dcef0cfSNathan Whitehorn	ftp://ftp5.fr.freebsd.org 	"France #5"\
786dcef0cfSNathan Whitehorn	ftp://ftp6.fr.freebsd.org 	"France #6"\
79a6df4068SGavin Atkinson	ftp://ftp7.fr.freebsd.org 	"France #7"\
80f58d163aSOllivier Robert	ftp://ftp8.fr.freebsd.org 	"IPv6 France #8"\
816dcef0cfSNathan Whitehorn	ftp://ftp.de.freebsd.org 	"Germany"\
826dcef0cfSNathan Whitehorn	ftp://ftp2.de.freebsd.org 	"Germany #2"\
836dcef0cfSNathan Whitehorn	ftp://ftp4.de.freebsd.org 	"Germany #4"\
846dcef0cfSNathan Whitehorn	ftp://ftp5.de.freebsd.org 	"Germany #5"\
856dcef0cfSNathan Whitehorn	ftp://ftp7.de.freebsd.org 	"Germany #7"\
866dcef0cfSNathan Whitehorn	ftp://ftp8.de.freebsd.org 	"Germany #8"\
876dcef0cfSNathan Whitehorn	ftp://ftp.gr.freebsd.org 	"Greece"\
886dcef0cfSNathan Whitehorn	ftp://ftp2.gr.freebsd.org 	"Greece #2"\
896dcef0cfSNathan Whitehorn	ftp://ftp3.ie.freebsd.org 	"Ireland #3"\
906dcef0cfSNathan Whitehorn	ftp://ftp.jp.freebsd.org 	"Japan"\
916dcef0cfSNathan Whitehorn	ftp://ftp2.jp.freebsd.org 	"Japan #2"\
926dcef0cfSNathan Whitehorn	ftp://ftp3.jp.freebsd.org 	"Japan #3"\
936dcef0cfSNathan Whitehorn	ftp://ftp4.jp.freebsd.org 	"Japan #4"\
946dcef0cfSNathan Whitehorn	ftp://ftp5.jp.freebsd.org 	"Japan #5"\
956dcef0cfSNathan Whitehorn	ftp://ftp6.jp.freebsd.org 	"Japan #6"\
966dcef0cfSNathan Whitehorn	ftp://ftp7.jp.freebsd.org 	"Japan #7"\
976dcef0cfSNathan Whitehorn	ftp://ftp8.jp.freebsd.org 	"Japan #8"\
986dcef0cfSNathan Whitehorn	ftp://ftp9.jp.freebsd.org 	"Japan #9"\
996dcef0cfSNathan Whitehorn	ftp://ftp.kr.freebsd.org 	"Korea"\
1006dcef0cfSNathan Whitehorn	ftp://ftp2.kr.freebsd.org 	"Korea #2"\
101a6df4068SGavin Atkinson	ftp://ftp.lv.freebsd.org 	"Latvia"\
1026dcef0cfSNathan Whitehorn	ftp://ftp.nl.freebsd.org 	"Netherlands"\
1036dcef0cfSNathan Whitehorn	ftp://ftp2.nl.freebsd.org 	"Netherlands #2"\
104a6df4068SGavin Atkinson	ftp://ftp.nz.freebsd.org 	"New Zealand"\
1056dcef0cfSNathan Whitehorn	ftp://ftp.no.freebsd.org 	"Norway"\
1066dcef0cfSNathan Whitehorn	ftp://ftp.pl.freebsd.org 	"Poland"\
1076dcef0cfSNathan Whitehorn	ftp://ftp.ru.freebsd.org 	"Russia"\
1086dcef0cfSNathan Whitehorn	ftp://ftp2.ru.freebsd.org 	"Russia #2"\
109a6df4068SGavin Atkinson	ftp://ftp5.ru.freebsd.org 	"Russia #5"\
110a6df4068SGavin Atkinson	ftp://ftp6.ru.freebsd.org 	"Russia #6"\
1116dcef0cfSNathan Whitehorn	ftp://ftp.sk.freebsd.org 	"Slovak Republic"\
112a6df4068SGavin Atkinson	ftp://ftp2.sk.freebsd.org 	"Slovak Republic #2"\
1136dcef0cfSNathan Whitehorn	ftp://ftp.si.freebsd.org 	"Slovenia"\
1146dcef0cfSNathan Whitehorn	ftp://ftp.za.freebsd.org 	"South Africa"\
1156dcef0cfSNathan Whitehorn	ftp://ftp2.za.freebsd.org 	"South Africa #2"\
1166dcef0cfSNathan Whitehorn	ftp://ftp4.za.freebsd.org 	"South Africa #4"\
1176dcef0cfSNathan Whitehorn	ftp://ftp.se.freebsd.org 	"Sweden"\
1186dcef0cfSNathan Whitehorn	ftp://ftp4.se.freebsd.org 	"Sweden #4"\
1196dcef0cfSNathan Whitehorn	ftp://ftp.ch.freebsd.org 	"Switzerland"\
1206dcef0cfSNathan Whitehorn	ftp://ftp.tw.freebsd.org 	"Taiwan"\
1216dcef0cfSNathan Whitehorn	ftp://ftp2.tw.freebsd.org 	"Taiwan #2"\
1226dcef0cfSNathan Whitehorn	ftp://ftp3.tw.freebsd.org 	"Taiwan #3"\
1236dcef0cfSNathan Whitehorn	ftp://ftp4.tw.freebsd.org 	"Taiwan #4"\
1246dcef0cfSNathan Whitehorn	ftp://ftp6.tw.freebsd.org 	"Taiwan #6"\
1256dcef0cfSNathan Whitehorn	ftp://ftp11.tw.freebsd.org 	"Taiwan #11"\
1266dcef0cfSNathan Whitehorn	ftp://ftp.uk.freebsd.org 	"UK"\
1276dcef0cfSNathan Whitehorn	ftp://ftp2.uk.freebsd.org 	"UK #2"\
1286dcef0cfSNathan Whitehorn	ftp://ftp3.uk.freebsd.org 	"UK #3"\
1296dcef0cfSNathan Whitehorn	ftp://ftp4.uk.freebsd.org 	"UK #4"\
1306dcef0cfSNathan Whitehorn	ftp://ftp5.uk.freebsd.org 	"UK #5"\
1316dcef0cfSNathan Whitehorn	ftp://ftp.ua.freebsd.org 	"Ukraine"\
1326dcef0cfSNathan Whitehorn	ftp://ftp1.us.freebsd.org 	"USA #1"\
1336dcef0cfSNathan Whitehorn	ftp://ftp2.us.freebsd.org 	"USA #2"\
1346dcef0cfSNathan Whitehorn	ftp://ftp3.us.freebsd.org 	"USA #3"\
1356dcef0cfSNathan Whitehorn	ftp://ftp4.us.freebsd.org 	"USA #4"\
1366dcef0cfSNathan Whitehorn	ftp://ftp5.us.freebsd.org 	"USA #5"\
1376dcef0cfSNathan Whitehorn	ftp://ftp6.us.freebsd.org 	"USA #6"\
1386dcef0cfSNathan Whitehorn	ftp://ftp8.us.freebsd.org 	"USA #8"\
1396dcef0cfSNathan Whitehorn	ftp://ftp10.us.freebsd.org 	"USA #10"\
1406dcef0cfSNathan Whitehorn	ftp://ftp11.us.freebsd.org 	"USA #11"\
1416dcef0cfSNathan Whitehorn	ftp://ftp13.us.freebsd.org 	"USA #13"\
1426dcef0cfSNathan Whitehorn	ftp://ftp14.us.freebsd.org 	"USA #14"\
1436dcef0cfSNathan Whitehorn	ftp://ftp15.us.freebsd.org 	"USA #15"\
1446dcef0cfSNathan Whitehorn    2>&1 1>&3`
1456dcef0cfSNathan WhitehornMIRROR_BUTTON=$?
1466dcef0cfSNathan Whitehornexec 3>&-
1476dcef0cfSNathan Whitehorn
14839d4f2c6SGlen Barber_UNAME_R=`uname -r`
149a382af08SDag-Erling Smørgrav_UNAME_R=${_UNAME_R%-p*}
15039d4f2c6SGlen Barber
15139d4f2c6SGlen Barbercase ${_UNAME_R} in
1522ba8b5b3SGlen Barber	*-ALPHA*|*-CURRENT|*-STABLE|*-PRERELEASE)
15339d4f2c6SGlen Barber		RELDIR="snapshots"
15439d4f2c6SGlen Barber		;;
15539d4f2c6SGlen Barber	*)
15639d4f2c6SGlen Barber		RELDIR="releases"
15739d4f2c6SGlen Barber		;;
15839d4f2c6SGlen Barberesac
15939d4f2c6SGlen Barber
16039d4f2c6SGlen BarberBSDINSTALL_DISTSITE="$MIRROR/pub/FreeBSD/${RELDIR}/`uname -m`/`uname -p`/${_UNAME_R}"
1616dcef0cfSNathan Whitehorn
1626dcef0cfSNathan Whitehorncase $MIRROR_BUTTON in
163bbddd888SAlfonso S. Siciliano$BSDDIALOG_ERROR | $BSDDIALOG_CANCEL | $BSDDIALOG_ESC)
1646dcef0cfSNathan Whitehorn	exit 1
1656dcef0cfSNathan Whitehorn	;;
166bbddd888SAlfonso S. Siciliano$BSDDIALOG_OK)
1676dcef0cfSNathan Whitehorn	;;
168bbddd888SAlfonso S. Siciliano$BSDDIALOG_EXTRA)
1696dcef0cfSNathan Whitehorn	exec 3>&1
170*cc42ef53SBrad Davis	BSDINSTALL_DISTSITE=`bsddialog --backtitle "$OSNAME Installer" \
1716dcef0cfSNathan Whitehorn	    --title "Mirror Selection" \
172*cc42ef53SBrad Davis	    --inputbox "Please enter the URL to an alternate $OSNAME mirror:" \
173bbddd888SAlfonso S. Siciliano	    0 74 "$BSDINSTALL_DISTSITE" 2>&1 1>&3`
1746dcef0cfSNathan Whitehorn	MIRROR_BUTTON=$?
1756dcef0cfSNathan Whitehorn	exec 3>&-
176bbddd888SAlfonso S. Siciliano	test $MIRROR_BUTTON -eq $BSDDIALOG_OK || exec $0 $@
1776dcef0cfSNathan Whitehorn	;;
1786dcef0cfSNathan Whitehornesac
1796dcef0cfSNathan Whitehorn
1806dcef0cfSNathan Whitehornexport BSDINSTALL_DISTSITE
1816dcef0cfSNathan Whitehornecho $BSDINSTALL_DISTSITE >&2
182