summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/lib/Client/Frame.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/lib/Client/Frame.py b/src/lib/Client/Frame.py
index 24fbc52bf..a54760b12 100644
--- a/src/lib/Client/Frame.py
+++ b/src/lib/Client/Frame.py
@@ -77,14 +77,16 @@ 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['interactive'] and \
- not self.setup['bundle']:
+ 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: