summaryrefslogtreecommitdiff
path: root/ick2/actionenvs.py
diff options
context:
space:
mode:
Diffstat (limited to 'ick2/actionenvs.py')
-rw-r--r--ick2/actionenvs.py6
1 files changed, 0 insertions, 6 deletions
diff --git a/ick2/actionenvs.py b/ick2/actionenvs.py
index 7a2b57a..099b13f 100644
--- a/ick2/actionenvs.py
+++ b/ick2/actionenvs.py
@@ -143,12 +143,6 @@ class HostEnvironment(ActionEnvironment):
class ChrootEnvironment(ActionEnvironment):
- def get_mounts(self): # pragma: no cover
- return [
- ('/proc', os.path.join(self._workspace, 'proc')),
- ('/sys', os.path.join(self._workspace, 'sys')),
- ]
-
def runcmd(self, argv):
prefix = ['sudo', 'chroot', self._workspace]
return self.host_runcmd(prefix + argv)