gnu: zabbix-agentd: Enable TLS support.
* gnu/packages/monitoring.scm (zabbix-agentd)[arguments]: Pass "--with-gnutls" in #:configure-flags. [inputs]: Add GNUTLS. (zabbix-server): Inherit these changes.
This commit is contained in:
parent
176a501360
commit
593548f063
1 changed files with 8 additions and 6 deletions
|
@ -188,12 +188,17 @@ etc. via a Web interface. Features include:
|
||||||
"/run/setuid-programs/fping")))))
|
"/run/setuid-programs/fping")))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:configure-flags
|
(list #:configure-flags
|
||||||
'("--enable-agent" "--enable-ipv6" "--with-libpcre2")))
|
#~(list "--enable-agent"
|
||||||
|
"--enable-ipv6"
|
||||||
|
"--with-libpcre2"
|
||||||
|
"--with-gnutls"
|
||||||
|
(string-append "--with-gnutls="
|
||||||
|
(assoc-ref %build-inputs "gnutls")))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config))
|
(list pkg-config))
|
||||||
(inputs
|
(inputs
|
||||||
(list pcre2))
|
(list gnutls pcre2))
|
||||||
(home-page "https://www.zabbix.com/")
|
(home-page "https://www.zabbix.com/")
|
||||||
(synopsis "Distributed monitoring solution (client-side agent)")
|
(synopsis "Distributed monitoring solution (client-side agent)")
|
||||||
(description "This package provides a distributed monitoring
|
(description "This package provides a distributed monitoring
|
||||||
|
@ -239,8 +244,6 @@ solution (client-side agent)")
|
||||||
(string-append "--with-libevent="
|
(string-append "--with-libevent="
|
||||||
(assoc-ref %build-inputs "libevent"))
|
(assoc-ref %build-inputs "libevent"))
|
||||||
"--with-net-snmp"
|
"--with-net-snmp"
|
||||||
(string-append "--with-gnutls="
|
|
||||||
(assoc-ref %build-inputs "gnutls"))
|
|
||||||
"--with-libcurl"
|
"--with-libcurl"
|
||||||
(string-append "--with-zlib="
|
(string-append "--with-zlib="
|
||||||
(assoc-ref %build-inputs "zlib")))
|
(assoc-ref %build-inputs "zlib")))
|
||||||
|
@ -249,7 +252,6 @@ solution (client-side agent)")
|
||||||
(modify-inputs (package-inputs zabbix-agentd)
|
(modify-inputs (package-inputs zabbix-agentd)
|
||||||
(prepend curl
|
(prepend curl
|
||||||
libevent
|
libevent
|
||||||
gnutls
|
|
||||||
net-snmp
|
net-snmp
|
||||||
postgresql
|
postgresql
|
||||||
zlib)))
|
zlib)))
|
||||||
|
|
Reference in a new issue