From b4f381ed4ca5fc8d012765ac3af50c79ac63692c Mon Sep 17 00:00:00 2001 From: Matthias Stecher Date: Wed, 29 Sep 2021 20:24:22 +0200 Subject: [PATCH] __ini_value: fix use of removed constant _param was removed in preference of the param functions. --- cdist/conf/type/__ini_value/files/common.awk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cdist/conf/type/__ini_value/files/common.awk b/cdist/conf/type/__ini_value/files/common.awk index e5f3594c..bc51e0b8 100644 --- a/cdist/conf/type/__ini_value/files/common.awk +++ b/cdist/conf/type/__ini_value/files/common.awk @@ -11,7 +11,7 @@ BEGIN { get_param_array("comment-sign", comment_signs) comment_sign = comment_signs[0] - if(system("test -f " (_param "quote")) == 0) { + if(system("test -f " (ENVIRON["__object"] "/parameter/quote")) == 0) { # quote it now that it only wins checks against quoted values value = ("\"" value "\"") }