summaryrefslogtreecommitdiffstats
path: root/ipalib/frontend.py
diff options
context:
space:
mode:
authorMartin Babinsky <mbabinsk@redhat.com>2015-07-03 12:21:09 +0200
committerTomas Babej <tbabej@redhat.com>2015-07-08 00:35:05 +0200
commitea7f392bb98c1f1c4558ec5d6e84ee7a7c613474 (patch)
tree77d8a5f0b0737f97a364265dd15d190838b15347 /ipalib/frontend.py
parent1d9bdb240943527e1e19704acd183eae254267ae (diff)
downloadfreeipa-ea7f392bb98c1f1c4558ec5d6e84ee7a7c613474.tar.gz
freeipa-ea7f392bb98c1f1c4558ec5d6e84ee7a7c613474.tar.xz
freeipa-ea7f392bb98c1f1c4558ec5d6e84ee7a7c613474.zip
add option to skip client API version check
This can be either set in IPA config file or specified as 'ipa --skip-version-check [COMMAND]'. part of https://fedorahosted.org/freeipa/ticket/4768 Reviewed-By: Martin Basti <mbasti@redhat.com>
Diffstat (limited to 'ipalib/frontend.py')
-rw-r--r--ipalib/frontend.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/ipalib/frontend.py b/ipalib/frontend.py
index 81bf6d90b..3a59838d7 100644
--- a/ipalib/frontend.py
+++ b/ipalib/frontend.py
@@ -423,7 +423,7 @@ class Command(HasParam):
version_provided = 'version' in options
if version_provided:
self.verify_client_version(unicode(options['version']))
- else:
+ elif self.api.env.in_server or not self.api.env.skip_version_check:
options['version'] = API_VERSION
params = self.args_options_2_params(*args, **options)
self.debug(
@@ -451,7 +451,7 @@ class Command(HasParam):
):
ret['summary'] = self.get_summary_default(ret)
if self.use_output_validation and (self.output or ret is not None):
- self.validate_output(ret, options['version'])
+ self.validate_output(ret, options.get('version', API_VERSION))
return ret
def soft_validate(self, values):