diff options
author | Scott Moser <smoser@ubuntu.com> | 2012-09-19 20:19:15 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2012-09-19 20:19:15 -0400 |
commit | 3912209cdb075b7af8f87c1e41170fd8614ca520 (patch) | |
tree | 4022b6f778686e9ed6fdfc9170dfc2097525e6f9 /doc/examples/cloud-config-landscape.txt | |
parent | 89f54bba6a7cc2b1d0d4b04dd1caf477bee72ea2 (diff) | |
download | vyos-cloud-init-3912209cdb075b7af8f87c1e41170fd8614ca520.tar.gz vyos-cloud-init-3912209cdb075b7af8f87c1e41170fd8614ca520.zip |
doc: document 'tags' as comma delimited strings
LP: #1042764
Diffstat (limited to 'doc/examples/cloud-config-landscape.txt')
-rw-r--r-- | doc/examples/cloud-config-landscape.txt | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/examples/cloud-config-landscape.txt b/doc/examples/cloud-config-landscape.txt index 12c8101f..e4d23cc9 100644 --- a/doc/examples/cloud-config-landscape.txt +++ b/doc/examples/cloud-config-landscape.txt @@ -4,10 +4,12 @@ # will be basically rendered into a ConfigObj formated file # under the '[client]' section of /etc/landscape/client.conf # +# Note: 'tags' should be specified as a comma delimited string +# rather than a list. 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 ] + tags: "server,cloud" |