mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
parent
cea88bdf63
commit
0dcd274339
1 changed files with 2 additions and 2 deletions
|
@ -109,8 +109,8 @@ except ImportError:
|
||||||
# Extend the ZabbixAPI
|
# Extend the ZabbixAPI
|
||||||
# Since the zabbix-api python module too old (version 1.0, no higher version so far).
|
# Since the zabbix-api python module too old (version 1.0, no higher version so far).
|
||||||
class ZabbixAPIExtends(ZabbixAPI):
|
class ZabbixAPIExtends(ZabbixAPI):
|
||||||
def __init__(self, server, timeout, **kwargs):
|
def __init__(self, server, timeout, user, passwd, **kwargs):
|
||||||
ZabbixAPI.__init__(self, server, timeout=timeout)
|
ZabbixAPI.__init__(self, server, timeout=timeout, user=user, passwd=passwd)
|
||||||
|
|
||||||
|
|
||||||
class HostMacro(object):
|
class HostMacro(object):
|
||||||
|
|
Loading…
Reference in a new issue