This patch adds in support for automatically detecting and decompressing
[catalyst.git] / modules / builder.py
1
2 class generic:
3         def __init__(self,myspec):
4                 self.settings=myspec
5         def mount_safety_check(self):
6                 """
7                 Make sure that no bind mounts exist in chrootdir (to use before
8                 cleaning the directory, to make sure we don't wipe the contents of
9                 a bind mount
10                 """
11                 pass
12         def mount_all(self):
13                 """do all bind mounts"""
14                 pass
15         def umount_all(self):
16                 """unmount all bind mounts"""
17                 pass