forked from Checkmk/checkmk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathagent_cisco_prime
29 lines (25 loc) · 1.11 KB
/
agent_cisco_prime
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
# Copyright (C) 2019 tribe29 GmbH - License: GNU General Public License v2
# This file is part of Checkmk (https://checkmk.com). It is subject to the terms and
# conditions defined in the file COPYING, which is part of this source code package.
def agent_cisco_prime_arguments(params, hostname, ipaddress):
basic_auth = params.get("basicauth")
return [
str(elem) # non-str get ignored silently - so turn all elements into `str`
for chunk in (
("--hostname", params["hostname"]),
("-u", "%s:%s" % (basic_auth[0], passwordstore_get_cmdline("%s", basic_auth[1]))) #
if basic_auth else (),
("--port", params["port"]) #
if "port" in params else (),
("--no-tls") #
if params.get("no-tls") else (),
("--no-cert-check") #
if params.get("no-cert-check") else (),
("--timeout", params["timeout"]) #
if "timeout" in params else (),
)
for elem in chunk
]
special_agent_info['cisco_prime'] = agent_cisco_prime_arguments