summaryrefslogtreecommitdiffstats
path: root/py/mock/plugins/tmpfs.py
diff options
context:
space:
mode:
Diffstat (limited to 'py/mock/plugins/tmpfs.py')
-rw-r--r--py/mock/plugins/tmpfs.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/py/mock/plugins/tmpfs.py b/py/mock/plugins/tmpfs.py
index b725fb9..74c39a1 100644
--- a/py/mock/plugins/tmpfs.py
+++ b/py/mock/plugins/tmpfs.py
@@ -26,6 +26,7 @@ class Tmpfs(object):
self.conf = conf
rootObj.addHook("preinit", self._tmpfsPreInitHook)
rootObj.addHook("postbuild", self._tmpfsPostBuildHook)
+ rootObj.addHook("initfailed", self._tmpfsPostBuildHook)
decorate(traceLog())
def _tmpfsPreInitHook(self):
@@ -33,6 +34,7 @@ class Tmpfs(object):
mountCmd = "mount -n -t tmpfs mock_chroot_tmpfs %s" % self.rootObj.makeChrootPath()
mock.util.do(mountCmd)
+ decorate(traceLog())
def _tmpfsPostBuildHook(self):
getLog().info("unmounting tmpfs.")
mountCmd = "umount -n %s" % self.rootObj.makeChrootPath()