diff options
author | Joshua Harlow <harlowja@yahoo-inc.com> | 2013-01-25 17:11:33 -0800 |
---|---|---|
committer | Joshua Harlow <harlowja@yahoo-inc.com> | 2013-01-25 17:11:33 -0800 |
commit | d9fe11ca2bef6860847c8fba5dad7a7a34ed3faf (patch) | |
tree | ba77e18272046140e67b02db70f95d4ecac9f40d /templates/resolv.conf.tmpl | |
parent | 769419522585ff4c93f6d2c71990b137757f6a32 (diff) | |
parent | 94c37c074aed4036160881f4f3a28d35f868d006 (diff) | |
download | vyos-cloud-init-d9fe11ca2bef6860847c8fba5dad7a7a34ed3faf.tar.gz vyos-cloud-init-d9fe11ca2bef6860847c8fba5dad7a7a34ed3faf.zip |
Adding a resolv.conf configuration module (LP: #1100434)
Managing resolv.conf can be quite handy when running in an environment
where you would like to control DNS resolution, despite being provided
DNS server information by DHCP. This module will allow one to define the
structure of their resolv.conf and write it PER_ONCE.
Right now this makes the most sense on RedHat, and therefore, has defined 'distros' as such.
Note that when a config drive is used, and dhcp is not used that this module
may not be applicable since in the RedHat based distros the config drive typically
contains a ubuntu style network configuration which contains nameservers that can
be used in /etc/resolv.conf, but for other types of datasources it is useful to
have a module which can be specifically configured to write out /etc/resolv.conf
Diffstat (limited to 'templates/resolv.conf.tmpl')
-rw-r--r-- | templates/resolv.conf.tmpl | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/templates/resolv.conf.tmpl b/templates/resolv.conf.tmpl new file mode 100644 index 00000000..b7e97b13 --- /dev/null +++ b/templates/resolv.conf.tmpl @@ -0,0 +1,39 @@ +# +# Your system has been configured with 'manage-resolv-conf' set to true. +# As a result, cloud-init has written this file with configuration data +# that it has been provided. Cloud-init, by default, will write this file +# a single time (PER_ONCE). +# + +#if $varExists('nameservers') +#for $server in $nameservers +nameserver $server +#end for +#end if +#if $varExists('searchdomains') +search #slurp +#for $search in $searchdomains +$search #slurp +#end for + +#end if +#if $varExists('domain') +domain $domain +#end if +#if $varExists('sortlist') +sortlist #slurp +#for $sort in $sortlist +$sort #slurp +#end for + +#end if +#if $varExists('options') or $varExists('flags') +options #slurp +#for $flag in $flags +$flag #slurp +#end for +#for $key, $value in $options.items() +$key:$value #slurp +#end for + +#end if |