Version information
released Jun 24th 2024
This version is compatible with:
- Puppet Enterprise 2023.8.x, 2023.7.x, 2023.6.x, 2023.5.x, 2023.4.x, 2023.3.x, 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x
- Puppet >=7.0.0 <9.0.0
- RedHat, CentOS, OracleLinux, Scientific, Suse, Debian, Ubuntu, FreeBSD, OpenBSD, Gentoo, ArchLinux, AIX, Solaris
Start using this module
Add this module to your Puppetfile:
mod 'saz-resolv_conf', '7.0.0'
Learn more about managing modules with a PuppetfileDocumentation
saz/resolv_conf — version 7.0.0 Jun 24th 2024
puppet-resolv_conf
Manage resolv.conf via Puppet
Show some love
If you find this module useful, send some bitcoins to 1Na3YFUmdxKxJLiuRXQYJU2kiNqA3KY2j9
Supported Puppet versions
- Puppet >= 4.9.3
- Last version supporting Puppet 3: v3.3.0
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
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
[7.0.0]
Added
- CHANGELOG.md added
Changed
- Use stdlib:: namespace prefix for puppet 4.x function (#77)
Dependencies
- puppetlabs/stdlib (>=9.0.0 < 10.0.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.