diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-12-20 16:35:24 -0500 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-12-20 16:35:24 -0500 |
commit | 6bc6ab24d6ef11c068c609519d0a8fd4b1b6be07 (patch) | |
tree | 7025f99815b1251a2639955235d5992262275004 /doc | |
parent | b17a271da699230be8dad5d8c0227a5c7c238503 (diff) | |
download | vyos-cloud-init-6bc6ab24d6ef11c068c609519d0a8fd4b1b6be07.tar.gz vyos-cloud-init-6bc6ab24d6ef11c068c609519d0a8fd4b1b6be07.zip |
support configuration of landscape-client via cloud-config (LP: #857366)
This adds the ability to configure landscape client code from
cloud-config. The fields available are those that were populated to
/etc/landscape/client.conf when I ran landscape-config on precise
('11.07.1.1-0ubuntu2')
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/cloud-config-landscape.txt | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/doc/examples/cloud-config-landscape.txt b/doc/examples/cloud-config-landscape.txt new file mode 100644 index 00000000..12c8101f --- /dev/null +++ b/doc/examples/cloud-config-landscape.txt @@ -0,0 +1,13 @@ +# Landscape-client configuration +# +# Anything under the top 'landscape: client' entry +# will be basically rendered into a ConfigObj formated file +# under the '[client]' section of /etc/landscape/client.conf +# +landscape: + client: + url: "https://landscape.canonical.com/message-system" + ping_url: "http://landscape.canonical.com/ping" + data_path: "/var/lib/landscape/client" + http_proxy: "http://my.proxy.com/foobar" + tags: [ server, cloud ] |