From: tb Date: Sun, 19 Aug 2018 20:35:51 +0000 (+0000) Subject: There was some misunderstanding about which mirror to use. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=9cc5eb7cb8e1785b6af0b71dd1fa0736db34520a;p=openbsd There was some misunderstanding about which mirror to use. Back this out for now. --- diff --git a/distrib/miniroot/install.sub b/distrib/miniroot/install.sub index 4bd08975688..6e9a79c1ccb 100644 --- a/distrib/miniroot/install.sub +++ b/distrib/miniroot/install.sub @@ -1,5 +1,5 @@ #!/bin/ksh -# $OpenBSD: install.sub,v 1.1099 2018/08/19 20:01:38 tb Exp $ +# $OpenBSD: install.sub,v 1.1100 2018/08/19 20:35:51 tb Exp $ # # Copyright (c) 1997-2015 Todd Miller, Theo de Raadt, Ken Westerback # Copyright (c) 2015, Robert Peichaer @@ -2712,9 +2712,8 @@ finish_up() { fi # Create /etc/installurl if it does not yet exist. - if [[ ! -f /mnt/etc/installurl ]]; then - echo "${INSTALL_URL:-https://cdn.openbsd.org/pub/OpenBSD}" \ - >/mnt/etc/installurl + if [[ -n $INSTALL_URL && ! -f /mnt/etc/installurl ]]; then + echo "$INSTALL_URL" >/mnt/etc/installurl fi echo -n "Making all device nodes..."