summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Generators
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2004-08-19 14:54:11 +0000
committerNarayan Desai <desai@mcs.anl.gov>2004-08-19 14:54:11 +0000
commitb2d4c43bd043ab786822a9dfd029b71f7a25409d (patch)
tree59d5005ee60220e931d6553d9001faa081cbbd2e /src/lib/Server/Generators
parent044bc77657617a902e7b1aae1e182fc2e467ee2e (diff)
downloadbcfg2-b2d4c43bd043ab786822a9dfd029b71f7a25409d.tar.gz
bcfg2-b2d4c43bd043ab786822a9dfd029b71f7a25409d.tar.bz2
bcfg2-b2d4c43bd043ab786822a9dfd029b71f7a25409d.zip
update to new module path
(Logical change 1.43) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@257 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src/lib/Server/Generators')
-rw-r--r--src/lib/Server/Generators/account.py3
-rw-r--r--src/lib/Server/Generators/cfg.py3
-rw-r--r--src/lib/Server/Generators/fstab.py3
-rw-r--r--src/lib/Server/Generators/servicemgr.py3
4 files changed, 4 insertions, 8 deletions
diff --git a/src/lib/Server/Generators/account.py b/src/lib/Server/Generators/account.py
index 2405128f8..8c91676e4 100644
--- a/src/lib/Server/Generators/account.py
+++ b/src/lib/Server/Generators/account.py
@@ -1,7 +1,6 @@
#!/usr/bin/env python
-from Bcfg2.Server.Generator import Generator
-from Bcfg2.Server.GeneratorUtils import DirectoryBacked
+from Bcfg2.Server.Generator import Generator, DirectoryBacked
from Bcfg2.Server.Types import ConfigFile
class account(Generator):
diff --git a/src/lib/Server/Generators/cfg.py b/src/lib/Server/Generators/cfg.py
index e2f70b8bc..97b0775e1 100644
--- a/src/lib/Server/Generators/cfg.py
+++ b/src/lib/Server/Generators/cfg.py
@@ -5,8 +5,7 @@ from re import compile
from stat import S_ISDIR, ST_MODE
from string import join
-from Bcfg2.Server.Generator import Generator
-from Bcfg2.Server.GeneratorUtils import DirectoryBacked, FileBacked
+from Bcfg2.Server.Generator import Generator, DirectoryBacked, FileBacked
from Bcfg2.Server.Metadata import Metadata
class FileEntry(FileBacked):
diff --git a/src/lib/Server/Generators/fstab.py b/src/lib/Server/Generators/fstab.py
index 16e3ae4bf..bb9568ce8 100644
--- a/src/lib/Server/Generators/fstab.py
+++ b/src/lib/Server/Generators/fstab.py
@@ -2,8 +2,7 @@
from re import compile
-from Bcfg2.Server.Generator import Generator
-from Bcfg2.Server.GeneratorUtils import DirectoryBacked
+from Bcfg2.Server.Generator import Generator, DirectoryBacked
from Bcfg2.Server.Types import ConfigFile
class fstab(Generator):
diff --git a/src/lib/Server/Generators/servicemgr.py b/src/lib/Server/Generators/servicemgr.py
index 2e7a480ae..dfee9f224 100644
--- a/src/lib/Server/Generators/servicemgr.py
+++ b/src/lib/Server/Generators/servicemgr.py
@@ -1,7 +1,6 @@
#!/usr/bin/env python
-from Bcfg2.Server.Generator import Generator
-from Bcfg2.Server.GeneratorUtils import SingleXMLFileBacked
+from Bcfg2.Server.Generator import Generator, SingleXMLFileBacked
class ServiceList(SingleXMLFileBacked):
pass