summaryrefslogtreecommitdiffstats
path: root/src/lib/Client/Frame.py
diff options
context:
space:
mode:
authorSol Jerome <sol.jerome@gmail.com>2010-10-18 11:43:37 -0500
committerSol Jerome <sol.jerome@gmail.com>2010-10-18 11:46:55 -0500
commit8a70dbabd08308403ad8296979f50c379c707df9 (patch)
tree37d9604b3c6132b1c71622c8cd7cda319dab76c1 /src/lib/Client/Frame.py
parent16807d819b63384a0f588b4ea881c7b043571875 (diff)
downloadbcfg2-8a70dbabd08308403ad8296979f50c379c707df9.tar.gz
bcfg2-8a70dbabd08308403ad8296979f50c379c707df9.tar.bz2
bcfg2-8a70dbabd08308403ad8296979f50c379c707df9.zip
POSIX: Remove client-side support for old POSIX types
Signed-off-by: Sol Jerome <sol.jerome@gmail.com>
Diffstat (limited to 'src/lib/Client/Frame.py')
-rw-r--r--src/lib/Client/Frame.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/lib/Client/Frame.py b/src/lib/Client/Frame.py
index 6cfb19732..545d4b584 100644
--- a/src/lib/Client/Frame.py
+++ b/src/lib/Client/Frame.py
@@ -110,20 +110,6 @@ class Frame:
self.logger.info("Loaded tool drivers:")
self.logger.info([tool.name for tool in self.tools])
if not self.dryrun and not self.setup['bundle']:
- for cfile in [cfl for cfl in config.findall(".//ConfigFile") \
- if cfl.get('name') in self.__important__]:
- tl = [t for t in self.tools if t.handlesEntry(cfile) \
- and t.canVerify(cfile)]
- if tl:
- if not tl[0].VerifyConfigFile(cfile, []):
- if self.setup['interactive'] and not \
- promptFilter("Install %s: %s? (y/N):", [cfile]):
- continue
- try:
- self.states[cfile] = tl[0].InstallConfigFile(cfile)
- except:
- self.logger.error("Unexpected tool failure",
- exc_info=1)
for cfile in [cfl for cfl in config.findall(".//Path") \
if cfl.get('name') in self.__important__ and \
cfl.get('type') == 'file']: