From 84f7e55078486b68c853923417ac6e248cd6ae73 Mon Sep 17 00:00:00 2001 From: Lukas Macura Date: Mon, 18 Apr 2016 12:58:49 +0200 Subject: [PATCH] Repaired error in exporting hosts --- zaf | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/zaf b/zaf index 589e9da..d02bbde 100755 --- a/zaf +++ b/zaf @@ -307,19 +307,19 @@ api) shift hosts=$(zaf_zbxapi_gethostsingroup $gid) else - hosts=$(zaf_zbxapi_gethostid) + hosts=$(zaf_zbxapi_gethostids) fi zaf_wrn "Will backup this hosts: $hosts" zaf_wrn "Output dir: $dir" for h in $hosts; do if zaf_bglimit 5; then ( - hn=$(zaf_zbxapi_gethost $h) + hn=$(zaf_zbxapi_gethost $h name) zaf_wrn "Exporting host $hn($h)..." zaf_zbxapi_export_host $h >"$dir/$hn.xml" ) & else - hn=$(zaf_zbxapi_gethost $h) + hn=$(zaf_zbxapi_gethost $h name) zaf_wrn "Exporting host $hn($h)..." zaf_zbxapi_export_host $h >"$dir/$hn.xml" fi @@ -342,18 +342,18 @@ api) shift; shift [ -z "$1" ] && zaf_err "$0 api export-templates dir" dir="$1" - templates=$(zaf_zbxapi_gettemplateid) + templates=$(zaf_zbxapi_gettemplateids) zaf_wrn "Will backup this templates: $templates" zaf_wrn "Output dir: $dir" for t in $templates; do if zaf_bglimit 5; then ( - tn=$(zaf_zbxapi_gettemplate $t) + tn=$(zaf_zbxapi_gettemplate $t name) zaf_wrn "Exporting template $tn($t)..." zaf_zbxapi_export_template $t >"$dir/$tn.xml" ) & else - tn=$(zaf_zbxapi_gettemplate $t) + tn=$(zaf_zbxapi_gettemplate $t name) zaf_wrn "Exporting template $tn($t)..." zaf_zbxapi_export_template $t >"$dir/$tn.xml" fi