Stop tinderbox from trying to create a tarball of itself
authorEric Edgar <rocket@gentoo.org>
Thu, 6 Oct 2005 20:55:42 +0000 (20:55 +0000)
committerEric Edgar <rocket@gentoo.org>
Thu, 6 Oct 2005 20:55:42 +0000 (20:55 +0000)
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/catalyst/trunk@848 d1e1f19c-881f-0410-ab34-b69fee027534

ChangeLog
modules/tinderbox_target.py

index a4dd48ad3e435ec63a694a779068ed119cba1cd5..b430a809f343cd0be38e99dc3010fc9a51ec5715 100644 (file)
--- 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 <rocket@gentoo.org> modules/tinderbox_target.py:
+  Stop tinderbox from trying to create a tarball of itself
 
   06 Oct 2005; Eric Edgar <rocket@gentoo.org>
   modules/generic_stage_target.py:
index 09a4f0c9a3d02b9fc26940f4da5a6e405b3dcb6d..cc5a25d075f9ba1c8f17bcf67112eda6eaf8817f 100644 (file)
@@ -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