blob: ebe83703caff78df260cab6d538193e3bdc668c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/usr/bin/env python
'''This generator handles MCS filesystem setup'''
__revision__ = '$Revision$'
from Bcfg2.Server.Generator import Generator, ScopedXMLFile
class fs(Generator):
'''This generator takes care of mcs filesystem setup'''
__name__ = 'fs'
__version__ = '$Id$'
__author__ = 'bcfg-dev@mcs.anl.gov'
def __init__(self, core, datastore):
Generator.__init__(self, core, datastore)
self.fs = ScopedXMLFile("%s/../etc/fs.xml"%(datastore), self.core.fam)
self.__provides__ = self.fs.__provides__
|