From 064d4ddad3975bbb186b87b262ea703840de03f1 Mon Sep 17 00:00:00 2001 From: espie Date: Thu, 27 Jan 2000 15:28:08 +0000 Subject: [PATCH] Repairs --- .../templates/network.conf.template | 21 +++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/infrastructure/templates/network.conf.template b/infrastructure/templates/network.conf.template index 6c7a3d7bda3..0cc36ea7aaf 100644 --- a/infrastructure/templates/network.conf.template +++ b/infrastructure/templates/network.conf.template @@ -1,4 +1,4 @@ -# $OpenBSD: network.conf.template,v 1.1 1999/09/26 10:43:51 espie Exp $ +# $OpenBSD: network.conf.template,v 1.2 2000/01/27 15:28:08 espie Exp $ # # @@ -11,13 +11,26 @@ _MASTER_SITE_OPENBSD?= \ ftp://ftp.openbsd.org/pub/OpenBSD/distfiles/${DIST_SUBDIR}/ \ ftp://ftp.openbsd.org/pub/OpenBSD/licensed/${DIST_SUBDIR}/ -# default backup master site is -MASTER_SITE_BACKUP?= \ - ${_MASTER_SITE_OPENBSD} \ + +# Default FreeBSD backup site +_MASTER_SITE_FREEBSD?= \ ftp://ftp.freebsd.org/pub/FreeBSD/distfiles/${DIST_SUBDIR}/ # Uncomment to retrieve from the OpenBSD sites only # MASTER_SITE_OPENBSD=Yes +# Uncomment to retrieve from the FreeBSD sites only +# MASTER_SITE_OPENBSD=Yes + +.if defined(MASTER_SITE_OPENBSD) +MASTER_SITE_BACKUP= ${_MASTER_SITE_OPENBSD} +.elsif defined(MASTER_SITE_FREEBSD) +MASTER_SITE_BACKUP= ${_MASTER_SITE_FREEBSD} +.endif + +# default backup master site +MASTER_SITE_BACKUP?= \ + ${_MASTER_SITE_OPENBSD} \ + ${_MASTER_SITE_FREEBSD} # Uncomment to retrieve from the MASTER_SITE_BACKUP first # MASTER_SITE_OVERRIDE=${MASTER_SITE_BACKUP}