From 7327c62b086d338b2217fe654363c97b304906a8 Mon Sep 17 00:00:00 2001 From: Lars Erik Wik Date: Wed, 2 Jul 2025 14:03:30 +0200 Subject: [PATCH] Fixed bad return type in example for getacls Signed-off-by: Lars Erik Wik --- reference/functions/getacls.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/functions/getacls.markdown b/reference/functions/getacls.markdown index 1d234908b..928ee99a8 100644 --- a/reference/functions/getacls.markdown +++ b/reference/functions/getacls.markdown @@ -35,9 +35,9 @@ bundle agent __main__ { vars: "default_acls" - string => getacls("/tmp/foo/", "default"); + slist => getacls("/tmp/foo/", "default"); "access_acls" - string => getacls("/tmp/bar", "access"); + slist => getacls("/tmp/bar", "access"); } ```