diff options
author | Scott Moser <smoser@brickies.net> | 2016-08-23 16:48:38 -0400 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2016-08-23 16:48:38 -0400 |
commit | 7aa1c8e7d36fb68b1a3f020fbcbd45e4b0d1e9aa (patch) | |
tree | 2708c2365a0571f3db14fabd2324fdaef09f9735 /doc | |
parent | 2865eaceea68d592b03018d09c64f01fe3456a44 (diff) | |
parent | 6b294286e0d0a1da6b24b338cae3b900a763e9d2 (diff) | |
download | vyos-cloud-init-7aa1c8e7d36fb68b1a3f020fbcbd45e4b0d1e9aa.tar.gz vyos-cloud-init-7aa1c8e7d36fb68b1a3f020fbcbd45e4b0d1e9aa.zip |
merge trunk at 0.7.7~bzr1160
Diffstat (limited to 'doc')
-rw-r--r-- | doc/examples/cloud-config-datasources.txt | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/doc/examples/cloud-config-datasources.txt b/doc/examples/cloud-config-datasources.txt index 3bde4aac..2651c027 100644 --- a/doc/examples/cloud-config-datasources.txt +++ b/doc/examples/cloud-config-datasources.txt @@ -51,12 +51,19 @@ datasource: policy: on # [can be 'on', 'off' or 'force'] SmartOS: + # For KVM guests: # Smart OS datasource works over a serial console interacting with # a server on the other end. By default, the second serial console is the # device. SmartOS also uses a serial timeout of 60 seconds. serial_device: /dev/ttyS1 serial_timeout: 60 + # For LX-Brand Zones guests: + # Smart OS datasource works over a socket interacting with + # the host on the other end. By default, the socket file is in + # the native .zoncontrol directory. + metadata_sockfile: /native/.zonecontrol/metadata.sock + # a list of keys that will not be base64 decoded even if base64_all no_base64_decode: ['root_authorized_keys', 'motd_sys_info', 'iptables_disable'] |