From: Eric Edgar Date: Thu, 6 Oct 2005 20:55:42 +0000 (+0000) Subject: Stop tinderbox from trying to create a tarball of itself X-Git-Tag: CATALYST_2_0_6_916~646 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2b8fb01aa624adf1d6341225c533d751f9e18601;p=catalyst.git Stop tinderbox from trying to create a tarball of itself git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@848 d1e1f19c-881f-0410-ab34-b69fee027534 --- diff --git a/ChangeLog b/ChangeLog index a4dd48ad..b430a809 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.340 2005/10/06 17:26:51 rocket Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.341 2005/10/06 20:55:42 rocket Exp $ + + 06 Oct 2005; Eric Edgar modules/tinderbox_target.py: + Stop tinderbox from trying to create a tarball of itself 06 Oct 2005; Eric Edgar modules/generic_stage_target.py: diff --git a/modules/tinderbox_target.py b/modules/tinderbox_target.py index 09a4f0c9..cc5a25d0 100644 --- a/modules/tinderbox_target.py +++ b/modules/tinderbox_target.py @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo/src/catalyst/modules/tinderbox_target.py,v 1.10 2005/07/05 21:53:41 wolf31o2 Exp $ +# $Header: /var/cvsroot/gentoo/src/catalyst/modules/tinderbox_target.py,v 1.11 2005/10/06 20:55:42 rocket Exp $ """ builder class for the tinderbox target @@ -27,6 +27,13 @@ class tinderbox_target(generic_stage_target): self.unbind() raise CatalystError,"Tinderbox aborting due to error." + def set_action_sequence(self): + #Default action sequence for run method + self.settings["action_sequence"]=["unpack","unpack_snapshot",\ + "config_profile_link","setup_confdir","bind","chroot_setup",\ + "setup_environment","run_local","preclean","unbind","clean",\ + "clear_autoresume"] + def register(foo): foo.update({"tinderbox":tinderbox_target}) return foo