1*6dcef0cfSNathan Whitehorn#!/bin/sh 2*6dcef0cfSNathan Whitehorn#- 3*6dcef0cfSNathan Whitehorn# Copyright (c) 2011 Nathan Whitehorn 4*6dcef0cfSNathan Whitehorn# All rights reserved. 5*6dcef0cfSNathan Whitehorn# 6*6dcef0cfSNathan Whitehorn# Redistribution and use in source and binary forms, with or without 7*6dcef0cfSNathan Whitehorn# modification, are permitted provided that the following conditions 8*6dcef0cfSNathan Whitehorn# are met: 9*6dcef0cfSNathan Whitehorn# 1. Redistributions of source code must retain the above copyright 10*6dcef0cfSNathan Whitehorn# notice, this list of conditions and the following disclaimer. 11*6dcef0cfSNathan Whitehorn# 2. Redistributions in binary form must reproduce the above copyright 12*6dcef0cfSNathan Whitehorn# notice, this list of conditions and the following disclaimer in the 13*6dcef0cfSNathan Whitehorn# documentation and/or other materials provided with the distribution. 14*6dcef0cfSNathan Whitehorn# 15*6dcef0cfSNathan Whitehorn# THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16*6dcef0cfSNathan Whitehorn# ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17*6dcef0cfSNathan Whitehorn# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18*6dcef0cfSNathan Whitehorn# ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19*6dcef0cfSNathan Whitehorn# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20*6dcef0cfSNathan Whitehorn# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21*6dcef0cfSNathan Whitehorn# OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22*6dcef0cfSNathan Whitehorn# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23*6dcef0cfSNathan Whitehorn# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24*6dcef0cfSNathan Whitehorn# OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25*6dcef0cfSNathan Whitehorn# SUCH DAMAGE. 26*6dcef0cfSNathan Whitehorn# 27*6dcef0cfSNathan Whitehorn# $FreeBSD$ 28*6dcef0cfSNathan Whitehorn 29*6dcef0cfSNathan Whitehorn: ${DIALOG_OK=0} 30*6dcef0cfSNathan Whitehorn: ${DIALOG_CANCEL=1} 31*6dcef0cfSNathan Whitehorn: ${DIALOG_HELP=2} 32*6dcef0cfSNathan Whitehorn: ${DIALOG_EXTRA=3} 33*6dcef0cfSNathan Whitehorn: ${DIALOG_ITEM_HELP=4} 34*6dcef0cfSNathan Whitehorn: ${DIALOG_ESC=255} 35*6dcef0cfSNathan Whitehorn 36*6dcef0cfSNathan Whitehornexec 3>&1 37*6dcef0cfSNathan WhitehornMIRROR=`dialog --backtitle "FreeBSD Installer" \ 38*6dcef0cfSNathan Whitehorn --title "Mirror Selection" --extra-button --extra-label "Other" \ 39*6dcef0cfSNathan 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*6dcef0cfSNathan Whitehorn 0 0 0 \ 41*6dcef0cfSNathan Whitehorn ftp://ftp.freebsd.org "Main Site"\ 42*6dcef0cfSNathan Whitehorn ftp://snapshots.jp.freebsd.org "Snapshots Server Japan"\ 43*6dcef0cfSNathan Whitehorn ftp://snapshots.se.freebsd.org "Snapshots Server Sweden"\ 44*6dcef0cfSNathan Whitehorn ftp://ftp.freebsd.org "IPv6 Main Site"\ 45*6dcef0cfSNathan Whitehorn ftp://ftp3.ie.freebsd.org "IPv6 Ireland"\ 46*6dcef0cfSNathan Whitehorn ftp://ftp.il.freebsd.org "IPv6 Israel"\ 47*6dcef0cfSNathan Whitehorn ftp://ftp2.jp.freebsd.org "IPv6 Japan"\ 48*6dcef0cfSNathan Whitehorn ftp://ftp4.us.freebsd.org "IPv6 USA"\ 49*6dcef0cfSNathan Whitehorn ftp://ftp2.tr.freebsd.org "IPv6 Turkey"\ 50*6dcef0cfSNathan Whitehorn ftp://ftp1.freebsd.org "Primary"\ 51*6dcef0cfSNathan Whitehorn ftp://ftp2.freebsd.org "Primary #2"\ 52*6dcef0cfSNathan Whitehorn ftp://ftp3.freebsd.org "Primary #3"\ 53*6dcef0cfSNathan Whitehorn ftp://ftp4.freebsd.org "Primary #4"\ 54*6dcef0cfSNathan Whitehorn ftp://ftp5.freebsd.org "Primary #5"\ 55*6dcef0cfSNathan Whitehorn ftp://ftp6.freebsd.org "Primary #6"\ 56*6dcef0cfSNathan Whitehorn ftp://ftp7.freebsd.org "Primary #7"\ 57*6dcef0cfSNathan Whitehorn ftp://ftp8.freebsd.org "Primary #8"\ 58*6dcef0cfSNathan Whitehorn ftp://ftp9.freebsd.org "Primary #9"\ 59*6dcef0cfSNathan Whitehorn ftp://ftp10.freebsd.org "Primary #10"\ 60*6dcef0cfSNathan Whitehorn ftp://ftp11.freebsd.org "Primary #11"\ 61*6dcef0cfSNathan Whitehorn ftp://ftp12.freebsd.org "Primary #12"\ 62*6dcef0cfSNathan Whitehorn ftp://ftp13.freebsd.org "Primary #13"\ 63*6dcef0cfSNathan Whitehorn ftp://ftp14.freebsd.org "Primary #14"\ 64*6dcef0cfSNathan Whitehorn ftp://ftp.ar.freebsd.org "Argentina"\ 65*6dcef0cfSNathan Whitehorn ftp://ftp.au.freebsd.org "Australia"\ 66*6dcef0cfSNathan Whitehorn ftp://ftp2.au.freebsd.org "Australia #2"\ 67*6dcef0cfSNathan Whitehorn ftp://ftp3.au.freebsd.org "Australia #3"\ 68*6dcef0cfSNathan Whitehorn ftp://ftp.at.freebsd.org "Austria"\ 69*6dcef0cfSNathan Whitehorn ftp://ftp2.at.freebsd.org "Austria #2"\ 70*6dcef0cfSNathan Whitehorn ftp://ftp.br.freebsd.org "Brazil"\ 71*6dcef0cfSNathan Whitehorn ftp://ftp2.br.freebsd.org "Brazil #2"\ 72*6dcef0cfSNathan Whitehorn ftp://ftp3.br.freebsd.org "Brazil #3"\ 73*6dcef0cfSNathan Whitehorn ftp://ftp4.br.freebsd.org "Brazil #4"\ 74*6dcef0cfSNathan Whitehorn ftp://ftp5.br.freebsd.org "Brazil #5"\ 75*6dcef0cfSNathan Whitehorn ftp://ftp6.br.freebsd.org "Brazil #6"\ 76*6dcef0cfSNathan Whitehorn ftp://ftp7.br.freebsd.org "Brazil #7"\ 77*6dcef0cfSNathan Whitehorn ftp://ftp.ca.freebsd.org "Canada"\ 78*6dcef0cfSNathan Whitehorn ftp://ftp.cn.freebsd.org "China"\ 79*6dcef0cfSNathan Whitehorn ftp://ftp2.cn.freebsd.org "China #2"\ 80*6dcef0cfSNathan Whitehorn ftp://ftp.hr.freebsd.org "Croatia"\ 81*6dcef0cfSNathan Whitehorn ftp://ftp.cz.freebsd.org "Czech Republic"\ 82*6dcef0cfSNathan Whitehorn ftp://ftp.dk.freebsd.org "Denmark"\ 83*6dcef0cfSNathan Whitehorn ftp://ftp2.dk.freebsd.org "Denmark #2"\ 84*6dcef0cfSNathan Whitehorn ftp://ftp.ee.freebsd.org "Estonia"\ 85*6dcef0cfSNathan Whitehorn ftp://ftp.fi.freebsd.org "Finland"\ 86*6dcef0cfSNathan Whitehorn ftp://ftp.fr.freebsd.org "France"\ 87*6dcef0cfSNathan Whitehorn ftp://ftp2.fr.freebsd.org "France #2"\ 88*6dcef0cfSNathan Whitehorn ftp://ftp3.fr.freebsd.org "France #3"\ 89*6dcef0cfSNathan Whitehorn ftp://ftp5.fr.freebsd.org "France #5"\ 90*6dcef0cfSNathan Whitehorn ftp://ftp6.fr.freebsd.org "France #6"\ 91*6dcef0cfSNathan Whitehorn ftp://ftp8.fr.freebsd.org "France #8"\ 92*6dcef0cfSNathan Whitehorn ftp://ftp.de.freebsd.org "Germany"\ 93*6dcef0cfSNathan Whitehorn ftp://ftp2.de.freebsd.org "Germany #2"\ 94*6dcef0cfSNathan Whitehorn ftp://ftp3.de.freebsd.org "Germany #3"\ 95*6dcef0cfSNathan Whitehorn ftp://ftp4.de.freebsd.org "Germany #4"\ 96*6dcef0cfSNathan Whitehorn ftp://ftp5.de.freebsd.org "Germany #5"\ 97*6dcef0cfSNathan Whitehorn ftp://ftp6.de.freebsd.org "Germany #6"\ 98*6dcef0cfSNathan Whitehorn ftp://ftp7.de.freebsd.org "Germany #7"\ 99*6dcef0cfSNathan Whitehorn ftp://ftp8.de.freebsd.org "Germany #8"\ 100*6dcef0cfSNathan Whitehorn ftp://ftp.gr.freebsd.org "Greece"\ 101*6dcef0cfSNathan Whitehorn ftp://ftp2.gr.freebsd.org "Greece #2"\ 102*6dcef0cfSNathan Whitehorn ftp://ftp.hu.freebsd.org "Hungary"\ 103*6dcef0cfSNathan Whitehorn ftp://ftp.is.freebsd.org "Iceland"\ 104*6dcef0cfSNathan Whitehorn ftp://ftp.ie.freebsd.org "Ireland"\ 105*6dcef0cfSNathan Whitehorn ftp://ftp2.ie.freebsd.org "Ireland #2"\ 106*6dcef0cfSNathan Whitehorn ftp://ftp3.ie.freebsd.org "Ireland #3"\ 107*6dcef0cfSNathan Whitehorn ftp://ftp.il.freebsd.org "Israel"\ 108*6dcef0cfSNathan Whitehorn ftp://ftp.it.freebsd.org "Italy"\ 109*6dcef0cfSNathan Whitehorn ftp://ftp.jp.freebsd.org "Japan"\ 110*6dcef0cfSNathan Whitehorn ftp://ftp2.jp.freebsd.org "Japan #2"\ 111*6dcef0cfSNathan Whitehorn ftp://ftp3.jp.freebsd.org "Japan #3"\ 112*6dcef0cfSNathan Whitehorn ftp://ftp4.jp.freebsd.org "Japan #4"\ 113*6dcef0cfSNathan Whitehorn ftp://ftp5.jp.freebsd.org "Japan #5"\ 114*6dcef0cfSNathan Whitehorn ftp://ftp6.jp.freebsd.org "Japan #6"\ 115*6dcef0cfSNathan Whitehorn ftp://ftp7.jp.freebsd.org "Japan #7"\ 116*6dcef0cfSNathan Whitehorn ftp://ftp8.jp.freebsd.org "Japan #8"\ 117*6dcef0cfSNathan Whitehorn ftp://ftp9.jp.freebsd.org "Japan #9"\ 118*6dcef0cfSNathan Whitehorn ftp://ftp.kr.freebsd.org "Korea"\ 119*6dcef0cfSNathan Whitehorn ftp://ftp2.kr.freebsd.org "Korea #2"\ 120*6dcef0cfSNathan Whitehorn ftp://ftp.lt.freebsd.org "Lithuania"\ 121*6dcef0cfSNathan Whitehorn ftp://ftp.nl.freebsd.org "Netherlands"\ 122*6dcef0cfSNathan Whitehorn ftp://ftp2.nl.freebsd.org "Netherlands #2"\ 123*6dcef0cfSNathan Whitehorn ftp://ftp.no.freebsd.org "Norway"\ 124*6dcef0cfSNathan Whitehorn ftp://ftp3.no.freebsd.org "Norway #3"\ 125*6dcef0cfSNathan Whitehorn ftp://ftp.pl.freebsd.org "Poland"\ 126*6dcef0cfSNathan Whitehorn ftp://ftp2.pl.freebsd.org "Poland #2"\ 127*6dcef0cfSNathan Whitehorn ftp://ftp5.pl.freebsd.org "Poland #5"\ 128*6dcef0cfSNathan Whitehorn ftp://ftp.pt.freebsd.org "Portugal"\ 129*6dcef0cfSNathan Whitehorn ftp://ftp2.pt.freebsd.org "Portugal #2"\ 130*6dcef0cfSNathan Whitehorn ftp://ftp4.pt.freebsd.org "Portugal #4"\ 131*6dcef0cfSNathan Whitehorn ftp://ftp.ro.freebsd.org "Romania"\ 132*6dcef0cfSNathan Whitehorn ftp://ftp.ru.freebsd.org "Russia"\ 133*6dcef0cfSNathan Whitehorn ftp://ftp2.ru.freebsd.org "Russia #2"\ 134*6dcef0cfSNathan Whitehorn ftp://ftp3.ru.freebsd.org "Russia #3"\ 135*6dcef0cfSNathan Whitehorn ftp://ftp4.ru.freebsd.org "Russia #4"\ 136*6dcef0cfSNathan Whitehorn ftp://ftp.sg.freebsd.org "Singapore"\ 137*6dcef0cfSNathan Whitehorn ftp://ftp.sk.freebsd.org "Slovak Republic"\ 138*6dcef0cfSNathan Whitehorn ftp://ftp.si.freebsd.org "Slovenia"\ 139*6dcef0cfSNathan Whitehorn ftp://ftp2.si.freebsd.org "Slovenia #2"\ 140*6dcef0cfSNathan Whitehorn ftp://ftp.za.freebsd.org "South Africa"\ 141*6dcef0cfSNathan Whitehorn ftp://ftp2.za.freebsd.org "South Africa #2"\ 142*6dcef0cfSNathan Whitehorn ftp://ftp3.za.freebsd.org "South Africa #3"\ 143*6dcef0cfSNathan Whitehorn ftp://ftp4.za.freebsd.org "South Africa #4"\ 144*6dcef0cfSNathan Whitehorn ftp://ftp.es.freebsd.org "Spain"\ 145*6dcef0cfSNathan Whitehorn ftp://ftp2.es.freebsd.org "Spain #2"\ 146*6dcef0cfSNathan Whitehorn ftp://ftp3.es.freebsd.org "Spain #3"\ 147*6dcef0cfSNathan Whitehorn ftp://ftp.se.freebsd.org "Sweden"\ 148*6dcef0cfSNathan Whitehorn ftp://ftp2.se.freebsd.org "Sweden #2"\ 149*6dcef0cfSNathan Whitehorn ftp://ftp3.se.freebsd.org "Sweden #3"\ 150*6dcef0cfSNathan Whitehorn ftp://ftp4.se.freebsd.org "Sweden #4"\ 151*6dcef0cfSNathan Whitehorn ftp://ftp5.se.freebsd.org "Sweden #5"\ 152*6dcef0cfSNathan Whitehorn ftp://ftp.ch.freebsd.org "Switzerland"\ 153*6dcef0cfSNathan Whitehorn ftp://ftp2.ch.freebsd.org "Switzerland #2"\ 154*6dcef0cfSNathan Whitehorn ftp://ftp.tw.freebsd.org "Taiwan"\ 155*6dcef0cfSNathan Whitehorn ftp://ftp2.tw.freebsd.org "Taiwan #2"\ 156*6dcef0cfSNathan Whitehorn ftp://ftp3.tw.freebsd.org "Taiwan #3"\ 157*6dcef0cfSNathan Whitehorn ftp://ftp4.tw.freebsd.org "Taiwan #4"\ 158*6dcef0cfSNathan Whitehorn ftp://ftp6.tw.freebsd.org "Taiwan #6"\ 159*6dcef0cfSNathan Whitehorn ftp://ftp11.tw.freebsd.org "Taiwan #11"\ 160*6dcef0cfSNathan Whitehorn ftp://ftp.tr.freebsd.org "Turkey"\ 161*6dcef0cfSNathan Whitehorn ftp://ftp2.tr.freebsd.org "Turkey #2"\ 162*6dcef0cfSNathan Whitehorn ftp://ftp.uk.freebsd.org "UK"\ 163*6dcef0cfSNathan Whitehorn ftp://ftp2.uk.freebsd.org "UK #2"\ 164*6dcef0cfSNathan Whitehorn ftp://ftp3.uk.freebsd.org "UK #3"\ 165*6dcef0cfSNathan Whitehorn ftp://ftp4.uk.freebsd.org "UK #4"\ 166*6dcef0cfSNathan Whitehorn ftp://ftp5.uk.freebsd.org "UK #5"\ 167*6dcef0cfSNathan Whitehorn ftp://ftp6.uk.freebsd.org "UK #6"\ 168*6dcef0cfSNathan Whitehorn ftp://ftp.ua.freebsd.org "Ukraine"\ 169*6dcef0cfSNathan Whitehorn ftp://ftp2.ua.freebsd.org "Ukraine #2"\ 170*6dcef0cfSNathan Whitehorn ftp://ftp5.ua.freebsd.org "Ukraine #5"\ 171*6dcef0cfSNathan Whitehorn ftp://ftp6.ua.freebsd.org "Ukraine #6"\ 172*6dcef0cfSNathan Whitehorn ftp://ftp7.ua.freebsd.org "Ukraine #7"\ 173*6dcef0cfSNathan Whitehorn ftp://ftp8.ua.freebsd.org "Ukraine #8"\ 174*6dcef0cfSNathan Whitehorn ftp://ftp1.us.freebsd.org "USA #1"\ 175*6dcef0cfSNathan Whitehorn ftp://ftp2.us.freebsd.org "USA #2"\ 176*6dcef0cfSNathan Whitehorn ftp://ftp3.us.freebsd.org "USA #3"\ 177*6dcef0cfSNathan Whitehorn ftp://ftp4.us.freebsd.org "USA #4"\ 178*6dcef0cfSNathan Whitehorn ftp://ftp5.us.freebsd.org "USA #5"\ 179*6dcef0cfSNathan Whitehorn ftp://ftp6.us.freebsd.org "USA #6"\ 180*6dcef0cfSNathan Whitehorn ftp://ftp7.us.freebsd.org "USA #7"\ 181*6dcef0cfSNathan Whitehorn ftp://ftp8.us.freebsd.org "USA #8"\ 182*6dcef0cfSNathan Whitehorn ftp://ftp9.us.freebsd.org "USA #9"\ 183*6dcef0cfSNathan Whitehorn ftp://ftp10.us.freebsd.org "USA #10"\ 184*6dcef0cfSNathan Whitehorn ftp://ftp11.us.freebsd.org "USA #11"\ 185*6dcef0cfSNathan Whitehorn ftp://ftp12.us.freebsd.org "USA #12"\ 186*6dcef0cfSNathan Whitehorn ftp://ftp13.us.freebsd.org "USA #13"\ 187*6dcef0cfSNathan Whitehorn ftp://ftp14.us.freebsd.org "USA #14"\ 188*6dcef0cfSNathan Whitehorn ftp://ftp15.us.freebsd.org "USA #15"\ 189*6dcef0cfSNathan Whitehorn 2>&1 1>&3` 190*6dcef0cfSNathan WhitehornMIRROR_BUTTON=$? 191*6dcef0cfSNathan Whitehornexec 3>&- 192*6dcef0cfSNathan Whitehorn 193*6dcef0cfSNathan WhitehornBSDINSTALL_DISTSITE="$MIRROR/pub/FreeBSD/releases/`uname -p`/`uname -m`/`uname -r`" 194*6dcef0cfSNathan Whitehorn 195*6dcef0cfSNathan Whitehorncase $MIRROR_BUTTON in 196*6dcef0cfSNathan Whitehorn$DIALOG_CANCEL) 197*6dcef0cfSNathan Whitehorn exit 1 198*6dcef0cfSNathan Whitehorn ;; 199*6dcef0cfSNathan Whitehorn$DIALOG_OK) 200*6dcef0cfSNathan Whitehorn ;; 201*6dcef0cfSNathan Whitehorn$DIALOG_EXTRA) 202*6dcef0cfSNathan Whitehorn exec 3>&1 203*6dcef0cfSNathan Whitehorn BSDINSTALL_DISTSITE=`dialog --backtitle "FreeBSD Installer" \ 204*6dcef0cfSNathan Whitehorn --title "Mirror Selection" \ 205*6dcef0cfSNathan Whitehorn --inputbox "Please enter the URL to an alternate FreeBSD mirror:" \ 206*6dcef0cfSNathan Whitehorn 0 0 "$BSDINSTALL_DISTSITE" 2>&1 1>&3` 207*6dcef0cfSNathan Whitehorn MIRROR_BUTTON=$? 208*6dcef0cfSNathan Whitehorn exec 3>&- 209*6dcef0cfSNathan Whitehorn test $MIRROR_BUTTON -eq 0 || exec $0 $@ 210*6dcef0cfSNathan Whitehorn ;; 211*6dcef0cfSNathan Whitehornesac 212*6dcef0cfSNathan Whitehorn 213*6dcef0cfSNathan Whitehornexport BSDINSTALL_DISTSITE 214*6dcef0cfSNathan Whitehornecho $BSDINSTALL_DISTSITE >&2 215