From 6fe1e0f3fb251aebdc3e26490e1df327012424f2 Mon Sep 17 00:00:00 2001 From: Matt Taggart Date: Tue, 12 May 2015 11:29:35 -0700 Subject: fix join to use an array --- manifests/host.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/manifests/host.pp b/manifests/host.pp index 4e8d146..49f038b 100644 --- a/manifests/host.pp +++ b/manifests/host.pp @@ -4,7 +4,7 @@ define check_mk::host ( ) { $host = $title if size($host_tags) > 0 { - $taglist = join($host_tags,'|') + $taglist = join(any2array($host_tags),'|') $entry = "${host}|${taglist}" } else { -- cgit v1.2.3