official mirror was used. This way, people doing installs without network
access also get working pkg_add and syspatch experience out of the box.
Idea from tj
ok halex, job (who made it all possible), deraadt
#!/bin/ksh
-# $OpenBSD: install.sub,v 1.1100 2018/08/19 20:35:51 tb Exp $
+# $OpenBSD: install.sub,v 1.1101 2018/08/22 16:53:36 tb Exp $
#
# Copyright (c) 1997-2015 Todd Miller, Theo de Raadt, Ken Westerback
# Copyright (c) 2015, Robert Peichaer <rpe@openbsd.org>
fi
# Create /etc/installurl if it does not yet exist.
- if [[ -n $INSTALL_URL && ! -f /mnt/etc/installurl ]]; then
- echo "$INSTALL_URL" >/mnt/etc/installurl
+ if [[ ! -f /mnt/etc/installurl ]]; then
+ echo "${INSTALL_URL:-https://cdn.openbsd.org/pub/OpenBSD}" \
+ >/mnt/etc/installurl
fi
echo -n "Making all device nodes..."