diff options
author | Scott Moser <smoser@ubuntu.com> | 2011-07-26 14:17:24 -0400 |
---|---|---|
committer | Scott Moser <smoser@ubuntu.com> | 2011-07-26 14:17:24 -0400 |
commit | 10edc78d777cadb2cd871776622e6a775ef8f8a2 (patch) | |
tree | c348e0f3710a8378121aaa7684fa020b959d8986 /doc/examples/include-once.txt | |
parent | a3dcbac2528f7c8ecaedeca64c4792f7e3d4ee59 (diff) | |
parent | d5874c0bfcefc74ad9045efe4ed8450039b11b9a (diff) | |
download | vyos-cloud-init-10edc78d777cadb2cd871776622e6a775ef8f8a2.tar.gz vyos-cloud-init-10edc78d777cadb2cd871776622e6a775ef8f8a2.zip |
add support for 'include-once' and public and private keys to mcollective
the new 'include-once' type will include a URL only once, and cache its
results. This way you can use expiring URLs or one-time use urls to
pass sensitive data to the instance. The instance will cache the result
in a local root only file for subsequent boots.
Additionally, add support for specifying public and private keys for
mcollective via cloud-config.
Both these features come via Marc Cluet.
Diffstat (limited to 'doc/examples/include-once.txt')
-rw-r--r-- | doc/examples/include-once.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/examples/include-once.txt b/doc/examples/include-once.txt new file mode 100644 index 00000000..0cf74e5e --- /dev/null +++ b/doc/examples/include-once.txt @@ -0,0 +1,7 @@ +#include-once +# entries are one url per line. comment lines beginning with '#' are allowed +# urls are passed to urllib.urlopen, so the format must be supported there +# This entries will just be processed ONE TIME by cloud-init, any further +# iterations won't process this file +http://www.ubuntu.com/robots.txt +http://www.w3schools.com/html/lastpage.htm |