From b17f551894e67d0fa07026f587c906b157810a9c Mon Sep 17 00:00:00 2001 From: Ryan Lane Date: Fri, 28 Jan 2011 12:17:01 +0000 Subject: Removing quotes from puppet config option values LP: #709946 --- cloudinit/CloudConfig/cc_puppet.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cloudinit/CloudConfig/cc_puppet.py b/cloudinit/CloudConfig/cc_puppet.py index 8ccfb2df..9cfe7a49 100644 --- a/cloudinit/CloudConfig/cc_puppet.py +++ b/cloudinit/CloudConfig/cc_puppet.py @@ -67,7 +67,7 @@ def handle(name,cfg,cloud,log,args): cloud.datasource.get_instance_id()) # certname needs to be downcase v = v.lower() - puppet_conf_fh.write("%s=\"%s\"\n" % (o, v)) + puppet_conf_fh.write("%s=%s\n" % (o, v)) puppet_conf_fh.close() # Set puppet default file to automatically start subprocess.check_call(['sed', '-i', -- cgit v1.2.3