Showing with 16 additions and 2 deletions.
  1. +1 −0 .puppet-lint.rc
  2. +2 −0 CHANGELOG
  3. +1 −1 Modulefile
  4. +11 −0 README.md
  5. +1 −1 manifests/params.pp
1 change: 1 addition & 0 deletions .puppet-lint.rc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--no-quoted_booleans-check
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
2.4.0 - Zack Smith
* Bump r10k version
2.3.4 - Eli Young
* Webhook fixes for reboots + refreshes
2.3.2 - Zach Leslie + misterdom
Expand Down
2 changes: 1 addition & 1 deletion Modulefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name 'zack-r10k'
version '2.3.4'
version '2.4.0'
source 'https://github.com/acidprime/r10k'
author 'zack'
license 'Apache License, Version 2.0'
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,17 @@ class { 'r10k':
}
```

## Version chart

| Module Version | r10k Version |
| -------------- | ------------ |
| v2.4.0 | 1.3.5 |
| v2.3.1 | 1.3.4 |
| v2.3.0 | 1.3.2 |
| v2.2.8 | 1.3.1 |
| v2.2.x | 1.1.0 |


This will configure `/etc/r10k.yaml` and install the r10k gem after installing
ruby using the [puppetlabs/ruby](http://forge.puppetlabs.com/puppetlabs/ruby) module. It also has a few helper classes that do
some useful things. The following entry in Hiera will add a `prerun_command` to puppet.conf.
Expand Down
2 changes: 1 addition & 1 deletion manifests/params.pp
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
class r10k::params
{
$package_name = ''
$version = '1.3.4'
$version = '1.3.5'
$manage_modulepath = false
$manage_ruby_dependency = 'declare'
$install_options = undef
Expand Down