guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: Fix zabbix module.


From: Mathieu Othacehe
Subject: branch master updated: Fix zabbix module.
Date: Mon, 22 Feb 2021 05:58:35 -0500

This is an automated email from the git hooks/post-receive script.

mothacehe pushed a commit to branch master
in repository guix-cuirass.

The following commit(s) were added to refs/heads/master by this push:
     new f768b53  Fix zabbix module.
f768b53 is described below

commit f768b53a52b3b73ec7f979502f9b41c0c9146b66
Author: Mathieu Othacehe <othacehe@gnu.org>
AuthorDate: Mon Feb 22 11:57:45 2021 +0100

    Fix zabbix module.
    
    * src/cuirass/zabbix.scm (%zabbix-uri): Remove it.
    (zabbix-available?): Replace %zabbix-uri by %zabbix-url.
---
 src/cuirass/zabbix.scm | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/src/cuirass/zabbix.scm b/src/cuirass/zabbix.scm
index 90c7665..b6b1586 100644
--- a/src/cuirass/zabbix.scm
+++ b/src/cuirass/zabbix.scm
@@ -26,8 +26,7 @@
   #:use-module (rnrs bytevectors)
   #:use-module (srfi srfi-11)
   #:use-module (ice-9 match)
-  #:export (%zabbix-uri
-            zabbix-api-version
+  #:export (zabbix-api-version
             zabbix-available?
             zabbix-login
             zabbix-logout
@@ -83,7 +82,7 @@
     result))
 
 (define (zabbix-available?)
-  (and (%zabbix-uri)
+  (and (%zabbix-url)
        (string? (zabbix-api-version))))
 
 (define (zabbix-login)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]