Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 363577 | Differences between
and this patch

Collapse All | Expand All

(-)a/catalyst/base/stagebase.py (-2 / +2 lines)
Lines 990-996 class StageBase(TargetBase, ClearBase, GenBase): Link Here
990
				continue
990
				continue
991
991
992
			try:
992
			try:
993
				cmd(['umount', target])
993
				cmd(['umount', target], env=self.env)
994
			except CatalystError:
994
			except CatalystError:
995
				log.warning('First attempt to unmount failed: %s', target)
995
				log.warning('First attempt to unmount failed: %s', target)
996
				log.warning('Killing any pids still running in the chroot')
996
				log.warning('Killing any pids still running in the chroot')
Lines 998-1004 class StageBase(TargetBase, ClearBase, GenBase): Link Here
998
				self.kill_chroot_pids()
998
				self.kill_chroot_pids()
999
999
1000
				try:
1000
				try:
1001
					cmd(['umount', target])
1001
					cmd(['umount', target], env=self.env)
1002
				except CatalystError:
1002
				except CatalystError:
1003
					ouch = 1
1003
					ouch = 1
1004
					log.warning("Couldn't umount bind mount: %s", target)
1004
					log.warning("Couldn't umount bind mount: %s", target)

Return to bug 363577