diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-02-01 10:57:03 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-02-01 10:57:03 -0500 |
commit | ac273a2a96c27975ce7b287054bd0ea934c66935 (patch) | |
tree | 4203bdb86c740eb15b974addbe86b591493240aa /cloudinit | |
parent | 15f9ebe6b19836efec0bec44b0826fcfcae230c5 (diff) | |
parent | b17f551894e67d0fa07026f587c906b157810a9c (diff) | |
download | vyos-cloud-init-ac273a2a96c27975ce7b287054bd0ea934c66935.tar.gz vyos-cloud-init-ac273a2a96c27975ce7b287054bd0ea934c66935.zip |
Fixes issue puppet configuration option values in quotes.
LP: #709946
Diffstat (limited to 'cloudinit')
-rw-r--r-- | cloudinit/CloudConfig/cc_puppet.py | 2 |
1 files changed, 1 insertions, 1 deletions
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', |