use lower case names to workaround stupid puppet bug (http://projects.puppetlabs...
authorS.Çağlar Onur <caglar@verivue.com>
Tue, 3 May 2011 20:43:33 +0000 (16:43 -0400)
committerS.Çağlar Onur <caglar@verivue.com>
Tue, 3 May 2011 20:43:33 +0000 (16:43 -0400)
plc_config.py

index 07097f3..2d6afef 100644 (file)
@@ -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()