diff options
author | Jon Grimm <jon.grimm@canonical.com> | 2017-04-03 14:59:18 -0500 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2017-04-12 16:06:07 -0400 |
commit | 41f93a6000406ca974a5b9f5dc5e29f97bb59edb (patch) | |
tree | 7506c5fdc997d3e73200a0907403166f17b2b268 /doc/examples | |
parent | 291d2976bd7b95e492a004ed7ce80e47ad85905d (diff) | |
download | vyos-cloud-init-41f93a6000406ca974a5b9f5dc5e29f97bb59edb.tar.gz vyos-cloud-init-41f93a6000406ca974a5b9f5dc5e29f97bb59edb.zip |
doc: Fix example for resolve.conf configuration.
Should be 'manage_resolv_conf' not 'manage-resolv-conf'.
LP: #1531582
Diffstat (limited to 'doc/examples')
-rw-r--r-- | doc/examples/cloud-config-resolv-conf.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/examples/cloud-config-resolv-conf.txt b/doc/examples/cloud-config-resolv-conf.txt index 37ffc91a..c4843f54 100644 --- a/doc/examples/cloud-config-resolv-conf.txt +++ b/doc/examples/cloud-config-resolv-conf.txt @@ -5,9 +5,9 @@ # # Ensure that your yaml is valid and pass this as user-data when starting # the instance. Also be sure that your cloud.cfg file includes this -# configuration module in the appropirate section. +# configuration module in the appropriate section. # -manage-resolv-conf: true +manage_resolv_conf: true resolv_conf: nameservers: ['8.8.4.4', '8.8.8.8'] |