ovirt_auth: In case of token is passed u/p is not requierd

This commit is contained in:
Ondra Machacek 2018-06-21 10:39:12 +02:00 committed by Matt Clay
parent c40b85d01f
commit 56caa66290

View file

@ -267,8 +267,8 @@ def main():
if url is None and hostname is not None: if url is None and hostname is not None:
url = 'https://{0}/ovirt-engine/api'.format(hostname) url = 'https://{0}/ovirt-engine/api'.format(hostname)
username = get_required_parameter('username', 'OVIRT_USERNAME', required=True) username = get_required_parameter('username', 'OVIRT_USERNAME')
password = get_required_parameter('password', 'OVIRT_PASSWORD', required=True) password = get_required_parameter('password', 'OVIRT_PASSWORD')
token = get_required_parameter('token', 'OVIRT_TOKEN') token = get_required_parameter('token', 'OVIRT_TOKEN')
ca_file = get_required_parameter('ca_file', 'OVIRT_CAFILE') ca_file = get_required_parameter('ca_file', 'OVIRT_CAFILE')
insecure = params.get('insecure') if params.get('insecure') is not None else not bool(ca_file) insecure = params.get('insecure') if params.get('insecure') is not None else not bool(ca_file)