Move catalyst_support, builder, catalyst_lock out of modules, into the catalyst names...
[catalyst.git] / catalyst / builder.py
1
2 class generic:
3         def __init__(self,myspec):
4                 self.settings=myspec
5
6         def mount_safety_check(self):
7                 """
8                 Make sure that no bind mounts exist in chrootdir (to use before
9                 cleaning the directory, to make sure we don't wipe the contents of
10                 a bind mount
11                 """
12                 pass
13
14         def mount_all(self):
15                 """do all bind mounts"""
16                 pass
17
18         def umount_all(self):
19                 """unmount all bind mounts"""
20                 pass