Version information
released Dec 24th 2014
This version is compatible with:
- Puppet Enterprise >=3.2.0 < 3.4.0
- Puppet 3.x
- ArchLinux, CentOS, Debian, FreeBSD, Gentoo, OpenBSD, OracleLinux, RedHat, Scientific, Solaris, Suse, Ubuntu
Start using this module
Add this module to your Puppetfile:
mod 'zanloy-resolv_conf', '3.0.5'
Learn more about managing modules with a PuppetfileDocumentation
zanloy/resolv_conf — version 3.0.5 Dec 24th 2014
puppet-resolv_conf
Manage resolv.conf via Puppet
Show some love
If you find this module useful, send some bitcoins to 1Na3YFUmdxKxJLiuRXQYJU2kiNqA3KY2j9
Usage
class { 'resolv_conf':
nameservers => ['192.168.1.1', '192.168.2.2', '192.168.3.3'],
}
Different domain than current machine
class { 'resolv_conf':
nameservers => ['192.168.1.1', '192.168.2.2', '192.168.3.3'],
domainname => 'different.example.com',
}
Different searchpath
class { 'resolv_conf':
nameservers => ['192.168.1.1', '192.168.2.2', '192.168.3.3'],
searchpath => ['sub1.example.com', 'sub2.example.com'],
}
Class parameters
- nameservers: Array. Required. List of nameservers
- domainname: String. Default: $::domain
- searchpath: String or Array. List of search domains. Default: []
- options: Array. Default: empty
Dependencies
- puppetlabs/stdlib (>= 3.2.0)
Copyright 2012 Steffen Zieger Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.