aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPreston Cody <codeman@gentoo.org>2006-09-11 03:29:25 +0000
committerPreston Cody <codeman@gentoo.org>2006-09-11 03:29:25 +0000
commit28282dce5cc30005e024131f928625679a8952c6 (patch)
tree75d4c45e46ab73414a18a44699a2dc82300fb913
parentmore stupid mistakes (diff)
downloadgli-28282dce5cc30005e024131f928625679a8952c6.tar.gz
gli-28282dce5cc30005e024131f928625679a8952c6.tar.bz2
gli-28282dce5cc30005e024131f928625679a8952c6.zip
third time's the charm
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/gli/trunk@1519 f8877401-5920-0410-a79b-8e2d7e04ca0d
-rw-r--r--src/GLIArchitectureTemplate.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/GLIArchitectureTemplate.py b/src/GLIArchitectureTemplate.py
index 5cd1645..f35ac8e 100644
--- a/src/GLIArchitectureTemplate.py
+++ b/src/GLIArchitectureTemplate.py
@@ -5,7 +5,7 @@
# of which can be found in the main directory of this project.
Gentoo Linux Installer
-$Id: GLIArchitectureTemplate.py,v 1.292 2006/09/11 01:06:07 codeman Exp $
+$Id: GLIArchitectureTemplate.py,v 1.293 2006/09/11 03:29:25 codeman Exp $
The ArchitectureTemplate is largely meant to be an abstract class and an
interface (yes, it is both at the same time!). The purpose of this is to create
@@ -1315,7 +1315,7 @@ class ArchitectureTemplate:
mounted_devices.reverse()
for mount in mounted_devices:
if self._debug: self._logger.log("DEBUG: finishing_cleanup(): running: umount -l " + mount)
- ret = GLIUtility.spawn("umount -l " + mount)
+ ret = GLIUtility.spawn("umount -l " + self._chroot_dir + mount)
if not GLIUtility.exitsuccess(ret):
self._logger.log("ERROR! : Could not unmount mountpoint %s" % mount)
@@ -1364,7 +1364,7 @@ class ArchitectureTemplate:
mounted_devices.reverse()
for mount in mounted_devices:
if self._debug: self._logger.log("DEBUG: install_failed_cleanup(): running: umount -l " + mount)
- ret = GLIUtility.spawn("umount -l " + mount)
+ ret = GLIUtility.spawn("umount -l " + self._chroot_dir + mount)
if not GLIUtility.exitsuccess(ret):
self._logger.log("ERROR! : Could not unmount mountpoint %s" % mount)