From 57cab390a99f376f7d813865eba6183dcd2babff Mon Sep 17 00:00:00 2001 From: =?utf8?q?S=2E=C3=87a=C4=9Flar=20Onur?= Date: Tue, 3 May 2011 16:43:33 -0400 Subject: [PATCH] use lower case names to workaround stupid puppet bug (http://projects.puppetlabs.com/issues/3939) --- plc_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plc_config.py b/plc_config.py index 07097f3..2d6afef 100644 --- a/plc_config.py +++ b/plc_config.py @@ -738,7 +738,7 @@ DO NOT EDIT. This file was automatically generated at buf.writelines(["# " + line + os.linesep for line in comments]) # bash does not have the concept of NULL if value is not None: - buf.write("$" + id + "=" + value + os.linesep) + buf.write("$" + id.lower() + "=" + value + os.linesep) return buf.getvalue() -- 2.43.0