summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorNarayan Desai <desai@mcs.anl.gov>2004-08-12 16:04:59 +0000
committerNarayan Desai <desai@mcs.anl.gov>2004-08-12 16:04:59 +0000
commitcca9dd1b1e911a46aa4945ffc2b7349075d93669 (patch)
tree02b649947083e317cc725757ef204ed1b4ba3fcd /src
parent648a2089ad3255516f273e1557be4fe41808aac2 (diff)
downloadbcfg2-cca9dd1b1e911a46aa4945ffc2b7349075d93669.tar.gz
bcfg2-cca9dd1b1e911a46aa4945ffc2b7349075d93669.tar.bz2
bcfg2-cca9dd1b1e911a46aa4945ffc2b7349075d93669.zip
fix imports
(Logical change 1.39) git-svn-id: https://svn.mcs.anl.gov/repos/bcfg/trunk/bcfg2@235 ce84e21b-d406-0410-9b95-82705330c041
Diffstat (limited to 'src')
-rw-r--r--src/lib/Server/Generators/account.py6
-rw-r--r--src/lib/Server/Generators/fstab.py6
-rw-r--r--src/lib/Server/Generators/myri.py4
-rw-r--r--src/lib/Server/Generators/pkgmgr.py5
-rw-r--r--src/lib/Server/Generators/sshbase.py6
5 files changed, 13 insertions, 14 deletions
diff --git a/src/lib/Server/Generators/account.py b/src/lib/Server/Generators/account.py
index b3f74beac..2405128f8 100644
--- a/src/lib/Server/Generators/account.py
+++ b/src/lib/Server/Generators/account.py
@@ -1,8 +1,8 @@
#!/usr/bin/env python
-from Generator from Generator
-from GeneratorUtils import DirectoryBacked
-from Types import ConfigFile
+from Bcfg2.Server.Generator import Generator
+from Bcfg2.Server.GeneratorUtils import DirectoryBacked
+from Bcfg2.Server.Types import ConfigFile
class account(Generator):
__name__ = 'account'
diff --git a/src/lib/Server/Generators/fstab.py b/src/lib/Server/Generators/fstab.py
index bc5535b4d..16e3ae4bf 100644
--- a/src/lib/Server/Generators/fstab.py
+++ b/src/lib/Server/Generators/fstab.py
@@ -2,9 +2,9 @@
from re import compile
-from Generator import Generator
-from GeneratorUtils import DirectoryBacked
-from Types import ConfigFile
+from Bcfg2.Server.Generator import Generator
+from Bcfg2.Server.GeneratorUtils import DirectoryBacked
+from Bcfg2.Server.Types import ConfigFile
class fstab(Generator):
__name__ = 'fstab'
diff --git a/src/lib/Server/Generators/myri.py b/src/lib/Server/Generators/myri.py
index 0f0f8c81c..63d907514 100644
--- a/src/lib/Server/Generators/myri.py
+++ b/src/lib/Server/Generators/myri.py
@@ -2,8 +2,8 @@
from socket import getaddrinfo
-from Generator import Generator
-from Types import ConfigFile
+from Bcfg2.Server.Generator import Generator
+from Bcfg2.Server.Types import ConfigFile
class myri(Generator):
__name__ = 'myri'
diff --git a/src/lib/Server/Generators/pkgmgr.py b/src/lib/Server/Generators/pkgmgr.py
index 85dd9ea48..e4f0ef054 100644
--- a/src/lib/Server/Generators/pkgmgr.py
+++ b/src/lib/Server/Generators/pkgmgr.py
@@ -2,9 +2,8 @@
from re import compile
-from Generator import Generator
-from GeneratorUtils import DirectoryBacked, XMLFileBacked
-from Types import Package
+from Bcfg2.Server.Generator import Generator
+from Bcfg2.Server.GeneratorUtils import DirectoryBacked, XMLFileBacked
class PackageEntry(XMLFileBacked):
__identifier__ = 'image'
diff --git a/src/lib/Server/Generators/sshbase.py b/src/lib/Server/Generators/sshbase.py
index cef9cb672..2ed53ad1a 100644
--- a/src/lib/Server/Generators/sshbase.py
+++ b/src/lib/Server/Generators/sshbase.py
@@ -7,9 +7,9 @@ from socket import gethostbyname
from string import strip
from syslog import syslog, LOG_INFO
-from Types import ConfigFile
-from Generator import Generator
-from GeneratorUtils import DirectoryBacked
+from Bcfg2.Server.Types import ConfigFile
+from Bcfg2.Server.Generator import Generator
+from Bcfg2.Server.GeneratorUtils import DirectoryBacked
from elementtree.ElementTree import Element