Skip to content

Commit

Permalink
Added wrappers for puppetlabs-concat + New release v0.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Florent Poinsaut committed Jan 15, 2016
1 parent 8139492 commit fc4a034
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 2 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 2016-01-15 - Release 0.5.0
### Summary

This release adds wrappers for [puppetlabs-concat](https://forge.puppetlabs.com/puppetlabs/concat)

#### Features
- Added wrappers for [puppetlabs-concat](https://forge.puppetlabs.com/puppetlabs/concat)

## 2016-01-15 - Release 0.4.0
### Summary

Expand All @@ -6,7 +14,6 @@ This release adds wrappers for [camptocamp-openssl](https://forge.puppetlabs.com
#### Features
- Added wrappers for [camptocamp-openssl](https://forge.puppetlabs.com/camptocamp/openssl)


## 2016-01-08 - Release 0.3.1
### Summary

Expand Down
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ Puppet module to wrap some defined resource types that doesn't appear on Puppet'

* ```wrappers::apache::vhost```: Wrapper for ```::apache::vhost```

##### Wrappers for [puppetlabs-concat](https://forge.puppetlabs.com/puppetlabs/concat)

* ```wrappers::concat```: Wrapper for ```::concat```
* ```wrappers::concat::fragment```: Wrapper for ```::concat::fragment```

##### Wrappers for [puppetlabs-firewall](https://forge.puppetlabs.com/puppetlabs/firewall)

* ```wrappers::firewall```: Wrapper for ```::firewall```
Expand Down
5 changes: 5 additions & 0 deletions manifests/concat.pp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class wrappers::concat (
$resources = {}
) {
create_resources('concat', $resources)
}
5 changes: 5 additions & 0 deletions manifests/concat/fragment.pp
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
class wrappers::concat::fragment (
$resources = {}
) {
create_resources('concat::fragment', $resources)
}
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "echoes-wrappers",
"version": "0.4.0",
"version": "0.5.0",
"author": "Echoes Technologies",
"summary": "Puppet module to wrap some defined resource types that doesn't appear on Puppet's ENC Foreman",
"license": "Apache-2.0",
Expand Down

0 comments on commit fc4a034

Please sign in to comment.