From 44ff448a79ade75f8f1210c03b8893182474e3ab Mon Sep 17 00:00:00 2001 From: Mathias Gug Date: Tue, 7 Sep 2010 18:27:27 -0400 Subject: Fix missing import. --- cloudinit/CloudConfig/cc_puppet.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cloudinit/CloudConfig/cc_puppet.py b/cloudinit/CloudConfig/cc_puppet.py index ac72057c..8ccfb2df 100644 --- a/cloudinit/CloudConfig/cc_puppet.py +++ b/cloudinit/CloudConfig/cc_puppet.py @@ -16,6 +16,8 @@ # You should have received a copy of the GNU General Public License # along with this program. If not, see . import os +import pwd +import socket import subprocess def handle(name,cfg,cloud,log,args): -- cgit v1.2.3 From c0528202733a9ec576bb89ca4e771b5f09168eae Mon Sep 17 00:00:00 2001 From: Mathias Gug Date: Tue, 7 Sep 2010 18:27:43 -0400 Subject: Update documentation. --- doc/examples/cloud-config-puppet.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/examples/cloud-config-puppet.txt b/doc/examples/cloud-config-puppet.txt index 258418a4..cd3c2f8e 100644 --- a/doc/examples/cloud-config-puppet.txt +++ b/doc/examples/cloud-config-puppet.txt @@ -18,7 +18,7 @@ puppet: # The puppmaster ca certificate will be available in # /var/lib/puppet/ssl/certs/ca.pem conf: - puppetd: + agent: server: "puppetmaster.example.org" # certname supports substitutions at runtime: # %i: instanceid -- cgit v1.2.3