summaryrefslogtreecommitdiffstats
path: root/ipalib/cli.py
diff options
context:
space:
mode:
Diffstat (limited to 'ipalib/cli.py')
-rw-r--r--ipalib/cli.py7
1 files changed, 6 insertions, 1 deletions
diff --git a/ipalib/cli.py b/ipalib/cli.py
index 375607ff0..555cbac77 100644
--- a/ipalib/cli.py
+++ b/ipalib/cli.py
@@ -889,9 +889,14 @@ class cli(backend.Executioner):
``self.env.prompt_all`` is ``True``, this method will prompt for any
params that have a missing values, even if the param is optional.
"""
+ honor_alwaysask = True
+ for param in cmd.params():
+ if param.alwaysask and param.name in kw:
+ honor_alwaysask = False
+ break
for param in cmd.params():
if (param.required and param.name not in kw) or \
- param.alwaysask or self.env.prompt_all:
+ (param.alwaysask and honor_alwaysask) or self.env.prompt_all:
if param.password:
kw[param.name] = self.Backend.textui.prompt_password(
param.label