# Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.259 2005/05/16 14:26:50 rocket Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/ChangeLog,v 1.260 2005/05/18 18:09:14 rocket Exp $
+
+ 18 May 2005; Eric Edgar <rocket@gentoo.org> catalyst,
+ modules/generic_stage_target.py:
+ Fix print statement so it shows when kill_chroot_pids is run correctly
16 May 2005; Eric Edgar <rocket@gentoo.org> catalyst,
modules/snapshot_target.py:
#!/usr/bin/python
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/catalyst,v 1.81 2005/05/16 14:26:50 rocket Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/catalyst,v 1.82 2005/05/18 18:09:14 rocket Exp $
# Maintained in full by:
# Eric Edgar <rocket@gentoo.org>
mytarget=targetmap[addlargs["target"]](conf_values, addlargs)
# Kill any pids in the chroot
- print "Checking for processes running in chroot and killing them."
mytarget.kill_chroot_pids()
# Check for mounts right away and abort if we cannot unmount them.
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/catalyst/modules/generic_stage_target.py,v 1.45 2005/05/03 14:58:52 rocket Exp $
+# $Header: /var/cvsroot/gentoo/src/catalyst/modules/generic_stage_target.py,v 1.46 2005/05/18 18:09:14 rocket Exp $
"""
This class does all of the chroot setup, copying of files, etc. It is
del self.settings[self.settings["spec_prefix"]+"/gk_mainargs"]
def kill_chroot_pids(self):
+ print "Checking for processes running in chroot and killing them."
+
# Force environment variables to be exported so script can see them
self.setup_environment()