summaryrefslogtreecommitdiffstats
path: root/ipalib/plugable.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/plugable.py')
-rw-r--r--ipalib/plugable.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/ipalib/plugable.py b/ipalib/plugable.py
index fd5f31a76..cb87ebeab 100644
--- a/ipalib/plugable.py
+++ b/ipalib/plugable.py
@@ -455,6 +455,10 @@ class API(DictProxy):
dest='interactive',
help='Prompt for NO values (even if required)'
)
+ parser.add_option('-f', '--no-fallback', action='store_false',
+ dest='fallback',
+ help='Only use the server configured in /etc/ipa/default.conf'
+ )
topics = optparse.OptionGroup(parser, "Available help topics",
"ipa help topics")
cmds = optparse.OptionGroup(parser, "Available commands",
@@ -479,7 +483,8 @@ class API(DictProxy):
# --Jason, 2008-10-31
pass
overrides[str(key.strip())] = value.strip()
- for key in ('conf', 'debug', 'verbose', 'prompt_all', 'interactive'):
+ for key in ('conf', 'debug', 'verbose', 'prompt_all', 'interactive',
+ 'fallback'):
value = getattr(options, key, None)
if value is not None:
overrides[key] = value