From: Faiyaz Ahmed Date: Thu, 22 Mar 2007 17:57:23 +0000 (+0000) Subject: * Bugfix with keys not being set for site_admin due to array append error. X-Git-Tag: nodeconfig-4.2-1~19 X-Git-Url: http://git.onelab.eu/?a=commitdiff_plain;h=9248d6e802d6aa3cbefdaf21af657ac8e6b2fa7b;p=nodeconfig.git * Bugfix with keys not being set for site_admin due to array append error. * Removed fc2 mirrors since pl v4 uses fc4. --- diff --git a/yum.conf.php b/yum.conf.php index 69aed1b..d52a84a 100755 --- a/yum.conf.php +++ b/yum.conf.php @@ -5,7 +5,7 @@ // Mark Huang // Copyright (C) 2004-2006 The Trustees of Princeton University // -// $Id: yum.conf.php,v 1.3 2007/02/06 19:00:57 mlhuang Exp $ +// $Id: yum.conf.php,v 1.4 2007/02/06 21:29:13 mlhuang Exp $ // // For PLC_NAME and PLC_BOOT_HOST @@ -14,10 +14,13 @@ include('plc_config.php'); $PLC_NAME = PLC_NAME; $PLC_BOOT_HOST = PLC_BOOT_HOST; -$repos = array(array('FedoraCore2Base', 'Fedora Core 2 Base', 'stock-fc2'), +$oldrepos = array(array('FedoraCore2Base', 'Fedora Core 2 Base', 'stock-fc2'), array('FedoraCore2Updates', 'Fedora Core 2 Updates', 'updates-fc2'), array('ThirdParty', 'Third Party RPMS', '3rdparty')); +$repos = array(array('ThirdParty', 'Third Party RPMS', '3rdparty')); + + if (isset($_REQUEST['alpha'])) { $repos[] = array('PlanetLabAlpha', 'PlanetLab Alpha RPMS', 'planetlab-alpha'); } elseif (isset($_REQUEST['beta'])) { @@ -126,4 +129,4 @@ EOF; } } -?> \ No newline at end of file +?>