Version information
This version is compatible with:
- Puppet Enterprise >= 3.0.0 < 2015.3.0
- Puppet >= 3.0.0 < 5.0.0
- , , , , , , , , ,
Start using this module
Add this module to your Puppetfile:
mod 'puppetlabs-inifile', '1.4.2'
Learn more about managing modules with a PuppetfileDocumentation
#inifile
####Table of Contents
- Overview
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with inifile module
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
##Overview
The inifile module lets Puppet manage settings stored in INI-style configuration files.
##Module Description
Many applications use INI-style configuration files to store their settings. This module supplies two custom resource types to let you manage those settings through Puppet.
##Setup
###Beginning with inifile
To manage a single setting in an INI file, add the ini_setting
type to a class:
ini_setting { "sample setting":
ensure => present,
path => '/tmp/foo.ini',
section => 'bar',
setting => 'baz',
value => 'quux',
}
##Usage
The inifile module tries hard not to manipulate your file any more than it needs to. In most cases, it doesn't affect the original whitespace, comments, ordering, etc.
- Supports comments starting with either '#' or ';'.
- Supports either whitespace or no whitespace around '='.
- Adds any missing sections to the INI file.
###Manage multiple values in a setting
Use the ini_subsetting
type:
ini_subsetting {'sample subsetting':
ensure => present,
section => '',
key_val_separator => '=',
path => '/etc/default/pe-puppetdb',
setting => 'JAVA_ARGS',
subsetting => '-Xmx',
value => '512m',
}
Results in managing this -Xmx
subsetting:
JAVA_ARGS="-Xmx512m -XX:+HeapDumpOnOutOfMemoryError -XX:HeapDumpPath=/var/log/pe-puppetdb/puppetdb-oom.hprof"
###Use a non-standard section header
ini_setting { 'default minage':
ensure => present,
path => '/etc/security/users',
section => 'default',
setting => 'minage',
value => '1',
section_prefix => '',
section_suffix => ':',
}
Results in:
default:
minage = 1
###Implement child providers
You might want to create child providers that inherit the ini_setting
provider, for one or both of these purposes:
-
Make a custom resource to manage an application that stores its settings in INI files, without recreating the code to manage the files themselves.
-
Purge all unmanaged settings from a managed INI file.
To implement child providers, first specify a custom type. Have it implement a namevar called name
and a property called value
:
#my_module/lib/puppet/type/glance_api_config.rb
Puppet::Type.newtype(:glance_api_config) do
ensurable
newparam(:name, :namevar => true) do
desc 'Section/setting name to manage from glance-api.conf'
# namevar should be of the form section/setting
newvalues(/\S+\/\S+/)
end
newproperty(:value) do
desc 'The value of the setting to define'
munge do |v|
v.to_s.strip
end
end
end
Your type also needs a provider that uses the ini_setting
provider as its parent:
# my_module/lib/puppet/provider/glance_api_config/ini_setting.rb
Puppet::Type.type(:glance_api_config).provide(
:ini_setting,
# set ini_setting as the parent provider
:parent => Puppet::Type.type(:ini_setting).provider(:ruby)
) do
# implement section as the first part of the namevar
def section
resource[:name].split('/', 2).first
end
def setting
# implement setting as the second part of the namevar
resource[:name].split('/', 2).last
end
# hard code the file path (this allows purging)
def self.file_path
'/etc/glance/glance-api.conf'
end
end
Now the settings in /etc/glance/glance-api.conf file can be managed as individual resources:
glance_api_config { 'HEADER/important_config':
value => 'secret_value',
}
If you've implemented self.file_path, you can have Puppet purge the file of all lines that aren't implemented as Puppet resources:
resources { 'glance_api_config'
purge => true,
}
Manage multiple ini_settings
To manage multiple ini_settings, use the create_ini_settings
function.
$defaults = { 'path' => '/tmp/foo.ini' }
$example = { 'section1' => { 'setting1' => 'value1' } }
create_ini_settings($example, $defaults)
results in:
ini_setting { '[section1] setting1':
ensure => present,
section => 'section1',
setting => 'setting1',
value => 'value1',
path => '/tmp/foo.ini',
}
To include special parameters, the following code:
$defaults = { 'path' => '/tmp/foo.ini' }
$example = {
'section1' => {
'setting1' => 'value1',
'settings2' => {
'ensure' => 'absent'
}
}
}
create_ini_settings($example, $defaults)
results in:
ini_setting { '[section1] setting1':
ensure => present,
section => 'section1',
setting => 'setting1',
value => 'value1',
path => '/tmp/foo.ini',
}
ini_setting { '[section1] setting2':
ensure => absent,
section => 'section1',
setting => 'setting2',
path => '/tmp/foo.ini',
}
Manage multiple ini_settings with Hiera
This example requires Puppet 3.x/4.x, as it uses automatic retrieval of Hiera data for class parameters and puppetlabs/stdlib
.
For the profile example
:
class profile::example (
$settings,
) {
validate_hash($settings)
$defaults = { 'path' => '/tmp/foo.ini' }
create_ini_settings($settings, $defaults)
}
Provide this in your Hiera data:
profile::example::settings:
section1:
setting1: value1
setting2: value2
setting3:
ensure: absent
Results in:
ini_setting { '[section1] setting1':
ensure => present,
section => 'section1',
setting => 'setting1',
value => 'value1',
path => '/tmp/foo.ini',
}
ini_setting { '[section1] setting2':
ensure => present,
section => 'section1',
setting => 'setting2',
value => 'value2',
path => '/tmp/foo.ini',
}
ini_setting { '[section1] setting3':
ensure => absent,
section => 'section1',
setting => 'setting3',
path => '/tmp/foo.ini',
}
##Reference
###Public Types
###Public Functions
Type: ini_setting
Manages a setting within an INI file.
Parameters
ensure
Determines whether the specified setting should exist. Valid options: 'present' and 'absent'. Default value: 'present'.
key_val_separator
Optional. Specifies a string to use between each setting name and value (e.g., to determine whether the separator includes whitespace). Valid options: a string. Default value: ' = '.
name
Optional. Specifies an arbitrary name to identify the resource. Valid options: a string. Default value: the title of your declared resource.
path
Required. Specifies an INI file containing the setting to manage. Valid options: a string containing an absolute path.
section
Required. Designates a section of the specified INI file containing the setting to manage. To manage a global setting (at the beginning of the file, before any named sections) enter "". Valid options: a string.
setting
Optional. The name of the setting to define. Valid options: a string.
value
Optional. Supplies a value for the specified setting. Valid options: a string. Default value: undefined.
section_prefix
Optional. Designates the string that will appear before the section's name. Default value: "["
section_suffix
Optional. Designates the string that will appear after the section's name. Default value: "]".
NOTE: This type finds all sections in the file by looking for lines like ${section_prefix}${title}${section_suffix}
.
Type: ini_subsetting
Manages multiple values within the same INI setting.
Parameters
ensure
Specifies whether the subsetting should be present. Valid options: 'present' and 'absent'. Default value: 'present'.
key_val_separator
Optional. Specifies a string to use between setting name and value (e.g., to determine whether the separator includes whitespace). Valid options: a string. Default value: ' = '.
path
Required. Specifies an INI file containing the subsetting to manage. Valid options: a string containing an absolute path.
quote_char
Optional. The character used to quote the entire value of the setting. Valid values are '', '"', and "'". Defaults to ''. Valid options: '', '"' and "'". Default value: ''.
section
Optional. Designates a section of the specified INI file containing the setting to manage. To manage a global setting (at the beginning of the file, before any named sections) enter "". Defaults to "". Valid options: a string.
setting
Required. Designates a setting within the specified section containing the subsetting to manage. Valid options: a string.
subsetting
Required. Designates a subsetting to manage within the specified setting. Valid options: a string.
subsetting_separator
Optional. Specifies a string to use between subsettings. Valid options: a string. Default value: " ".
use_exact_match
Optional. Whether to use partial or exact matching for subsetting. Should be set to true if the subsettings do not have values. Valid options: true, false. Default value: false.
value
Optional. Supplies a value for the specified subsetting. Valid options: a string. Default value: undefined.
Function: create_ini_settings
Manages multiple ini_setting
resources from a hash. Note that this cannot be used with ini_subsettings.
create_ini_settings($settings, $defaults)
Arguments
First argument: settings
Required. Specify a hash representing the ini_setting
resources you want to create.
Second argument: defaults
Optional. Accepts a hash to be used as the values for any attributes not defined in the first argument.
$example = {
'section1' => {
'setting1' => {
'value' => 'value1', 'path' => '/tmp/foo.ini'
}
}
}
Default value: '{}'.
##Limitations
This module has been tested on all PE-supported platforms, and no issues have been identified. Additionally, it is tested (but not supported) on Windows 7, Mac OS X 10.9, and Solaris 12.
##Development
Puppet Labs modules on the Puppet Forge are open projects, and community contributions are essential for keeping them great. We can't access the huge number of platforms and myriad of hardware, software, and deployment configurations that Puppet is intended to serve.
We want to keep it as easy as possible to contribute changes so that our modules work in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.
For more information, see our module contribution guide.
###Contributors
To see who's already involved, see the list of contributors.
Types in this module release
2015-09-01 - Supported Release 1.4.2
Summary
This release adds some bugfixes.
####Bugfixes
- MODULES-2212 Add use_exact_match parameter for subsettings
- MODULES-1908 Munge the setting to ensure we always strip the whitespace
- MODULES-2369 Support a space as a key_val_separator
2015-07-15 - Supported Release 1.4.1
Summary
This release bumps the metadata for PE up.
##2015-07-07 - Supported Releases 1.4.0 ###Summary
This is primarily a release which includes acceptance tests updates, but also includes some minor bug fixes and improvements
####Features
- Solaris 12 Support
- Acceptance testing improvements
####Bugfixes
- MODULES-1599 Match only on space and tab whitespace after k/v separator
##2015-06-09 - Supported Releases 1.3.0 ###Summary
This is primarily a feature release, but also includes test fixes, documentation updates and synchronization of files with modulesync.
####Features
- Synchronized files using modulesync
- Improved documentation
- Allow changing key value separator beyond indentation
- Adding the ability to change regex match for $section in inifile
####Bugfixes
- pin beaker-rspec for windows testing
- pin rspec gems for testing
- Adds default values for section
- Fixed names containing spaces
##2014-11-11 - Supported Releases 1.2.0 ###Summary
This is primarily a bugfix release, but also includes documentation updates and synchronization of files with modulesync.
####Features
- Synchronized files using modulesync
- Improved documentation with a warning about old, manually installed inifile with PE3.3+
####Bugfixes
- Fix issue where single character settings were not being saved
##2014-09-30 - Supported Releases 1.1.4 ###Summary
This release includes documentation and test updates.
##2014-07-15 - Supported Release 1.1.3 ###Summary
This release merely updates metadata.json so the module can be uninstalled and upgraded via the puppet module command.
##2014-07-10 - Supported Release 1.1.2 ###Summary
This is a re-packaging release.
##2014-07-07 - Release 1.1.1 ###Summary
This supported bugfix release corrects the inifile section header detection regex (so you can use more characters in your section titles).
####Bugfixes
- Correct section regex to allow anything other than ]
- Correct
exists?
to return a boolean - Lots of test updates
- Add missing CONTRIBUTING.md
##2014-06-04 - Release 1.1.0 ###Summary
This is a compatibility and feature release. This release adds one new feature, the ability to control the quote character used. This allows you to do things like:
ini_subsetting { '-Xms':
ensure => present,
path => '/some/config/file',
section => '',
setting => 'JAVA_ARGS',
quote_char => '"',
subsetting => '-Xms'
value => '256m',
}
Which builds:
JAVA_ARGS="-Xmx256m -Xms256m"
####Features
- Add quote_char parameter to the ini_subsetting resource type
####Bugfixes
####Known Bugs
- No known bugs
##2014-03-04 - Supported Release 1.0.3 ###Summary
This is a supported release. It has only test changes.
####Features
####Bugfixes
####Known Bugs
- No known bugs
##2014-02-26 - Version 1.0.2 ###Summary This release adds supported platforms to metadata.json and contains spec fixes
##2014-02-12 - Version 1.0.1 ###Summary This release is a bugfix for handling whitespace/[]'s better, and adding a bunch of tests.
####Bugfixes
- Handle whitespace in sections
- Handle square brances in values
- Add metadata.json
- Update some travis testing
- Tons of beaker-rspec tests
##2013-07-16 - Version 1.0.0 ####Features
- Handle empty values.
- Handle whitespace in settings names (aka: server role = something)
- Add mechanism for allowing ini_setting subclasses to override the formation of the namevar during .instances, to allow for ini_setting derived types that manage flat ini-file-like files and still purge them.
##2013-05-28 - Chris Price chris@puppetlabs.com - 0.10.3
- Fix bug in subsetting handling for new settings (cbea5dc)
##2013-05-22 - Chris Price chris@puppetlabs.com - 0.10.2
- Better handling of quotes for subsettings (1aa7e60)
##2013-05-21 - Chris Price chris@puppetlabs.com - 0.10.1
- Change constants to class variables to avoid ruby warnings (6b19864)
##2013-04-10 - Erik Dalén dalen@spotify.com - 0.10.1
- Style fixes (c4af8c3)
##2013-04-02 - Dan Bode dan@puppetlabs.com - 0.10.1
- Add travisfile and Gemfile (c2052b3)
##2013-04-02 - Chris Price chris@puppetlabs.com - 0.10.1
- Update README.markdown (ad38a08)
##2013-02-15 - Karel Brezina karel.brezina@gmail.com - 0.10.0
- Added 'ini_subsetting' custom resource type (4351d8b)
##2013-03-11 - Dan Bode dan@puppetlabs.com - 0.10.0
- guard against nil indentation values (5f71d7f)
##2013-01-07 - Dan Bode dan@puppetlabs.com - 0.10.0
- Add purging support to ini file (2f22483)
##2013-02-05 - James Sweeny james.sweeny@puppetlabs.com - 0.10.0
- Fix test to use correct key_val_parameter (b1aff63)
##2012-11-06 - Chris Price chris@puppetlabs.com - 0.10.0
- Added license file w/Apache 2.0 license (5e1d203)
##2012-11-02 - Chris Price chris@puppetlabs.com - 0.9.0
- Version 0.9.0 released
##2012-10-26 - Chris Price chris@puppetlabs.com - 0.9.0
- Add detection for commented versions of settings (a45ab65)
##2012-10-20 - Chris Price chris@puppetlabs.com - 0.9.0
- Refactor to clarify implementation of
save
(f0d443f)
##2012-10-20 - Chris Price chris@puppetlabs.com - 0.9.0
- Add example for
ensure=absent
(e517148)
##2012-10-20 - Chris Price chris@puppetlabs.com - 0.9.0
- Better handling of whitespace lines at ends of sections (845fa70)
##2012-10-20 - Chris Price chris@puppetlabs.com - 0.9.0
- Respect indentation / spacing for existing sections and settings (c2c26de)
##2012-10-17 - Chris Price chris@puppetlabs.com - 0.9.0
- Minor tweaks to handling of removing settings (cda30a6)
##2012-10-10 - Dan Bode dan@puppetlabs.com - 0.9.0
- Add support for removing lines (1106d70)
##2012-10-02 - Dan Bode dan@puppetlabs.com - 0.9.0
- Make value a property (cbc90d3)
##2012-10-02 - Dan Bode dan@puppetlabs.com - 0.9.0
- Make ruby provider a better parent. (1564c47)
##2012-09-29 - Reid Vandewiele reid@puppetlabs.com - 0.9.0
- Allow values with spaces to be parsed and set (3829e20)
##2012-09-24 - Chris Price chris@pupppetlabs.com - 0.0.3
- Version 0.0.3 released
##2012-09-20 - Chris Price chris@puppetlabs.com - 0.0.3
- Add validation for key_val_separator (e527908)
##2012-09-19 - Chris Price chris@puppetlabs.com - 0.0.3
- Allow overriding separator string between key/val pairs (8d1fdc5)
##2012-08-20 - Chris Price chris@pupppetlabs.com - 0.0.2
- Version 0.0.2 released
##2012-08-17 - Chris Price chris@pupppetlabs.com - 0.0.2
- Add support for "global" section at beginning of file (c57dab4)
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright 2012 Chris Price 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.