# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.361 2005/10/26 15:42:48 rocket Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.362 2005/11/01 22:36:23 wolf31o2 Exp $
+
+ 01 Nov 2005; Chris Gianelloni <wolf31o2@gentoo.org>
+ +catalyst-2.0_pre20051101-slot.patch, catalyst:
+ Updated version stamp and added slot patch.
26 Oct 2005; Eric Edgar <rocket@gentoo.org> modules/netboot_target.py:
Fix ordering problem so self.settings is defined
#!/usr/bin/python
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/catalyst,v 1.93 2005/10/20 14:12:27 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/catalyst,v 1.94 2005/11/01 22:36:23 wolf31o2 Exp $
# Maintained in full by:
# Eric Edgar <rocket@gentoo.org>
import os,sys,imp,string,getopt
import pdb
__maintainer__="Chris Gianelloni <wolf31o2@gentoo.org>"
-__version__="2.0_pre20051020"
+__version__="2.0_pre20051101"
conf_values={}
--- /dev/null
+diff -urN catalyst-2.0_pre20051101.orig/catalyst catalyst-2.0_pre20051101/catalyst
+--- catalyst-2.0_pre20051101.orig/catalyst 2005-10-17 16:07:14.000000000 -0400
++++ catalyst-2.0_pre20051101/catalyst 2005-10-17 16:06:23.000000000 -0400
+@@ -50,10 +50,10 @@
+ myconf={}
+ config_file=""
+
+- confdefaults={ "storedir":"/var/tmp/catalyst",\
+- "sharedir":"/usr/share/catalyst","distdir":"/usr/portage/distfiles",\
++ confdefaults={ "storedir":"/var/tmp/catalyst2",\
++ "sharedir":"/usr/share/catalyst2","distdir":"/usr/portage/distfiles",\
+ "portdir":"/usr/portage","options":"",\
+- "snapshot_cache":"/var/tmp/catalyst/snapshot_cache" }
++ "snapshot_cache":"/var/tmp/catalyst2/snapshot_cache" }
+
+ # first, try the one passed (presumably from the cmdline)
+ if myconfig:
+@@ -67,9 +67,9 @@
+ sys.exit(1)
+
+ # next, try the default location
+- elif os.path.exists("/etc/catalyst/catalyst.conf"):
+- print "Using default Catalyst configuration file, /etc/catalyst/catalyst.conf"
+- config_file="/etc/catalyst/catalyst.conf"
++ elif os.path.exists("/etc/catalyst2/catalyst2.conf"):
++ print "Using default Catalyst configuration file, /etc/catalyst2/catalyst2.conf"
++ config_file="/etc/catalyst2/catalyst2.conf"
+
+ # can't find a config file (we are screwed), so bail out
+ else: