diff options
-rw-r--r-- | ChangeLog | 1 | ||||
-rw-r--r-- | cloudinit/CloudConfig/cc_puppet.py | 2 |
2 files changed, 2 insertions, 1 deletions
@@ -5,6 +5,7 @@ - add 'datasource' file to instance dir - add setting of passwords and enabling/disabling of PasswordAuthentication for sshd. By default no changes are done to sshd. + - fix for puppet configuration options (LP: #709946) [Ryan Lane] 0.6.0: - change permissions of /var/log/cloud-init.log to accomodate syslog writing to it (LP: #704509) 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', |