Skip to content

Commit

Permalink
Add wrappers for file_line + New release v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Florent Poinsaut committed Jun 2, 2016
1 parent 0ba352e commit 784baa5
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 5 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 2016-06-02 - Release 0.8.0
### Summary

This release adds wrappers for `file_line` from [puppetlabs-stdlib](https://forge.puppetlabs.com/puppetlabs/stdlib)

#### Features
- Added wrappers for `file_line` from [puppetlabs-stdlib](https://forge.puppetlabs.com/puppetlabs/stdlib)

## 2016-05-31 - Release 0.7.2
### Summary

Expand Down
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,10 @@ Puppet module to wrap some defined resource types that doesn't appear on Puppet'

#### Public Classes

* ```wrappers::exec```: Wrapper for ```::exec```
* ```wrappers::file```: Wrapper for ```::file```
* ```wrappers::package```: Wrapper for ```::package```
* ```wrappers::exec```: Wrapper for ```::exec```
* ```wrappers::file```: Wrapper for ```::file```
* ```wrappers::file_line```: Wrapper for ```::file_line```
* ```wrappers::package```: Wrapper for ```::package```

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

Expand Down
6 changes: 6 additions & 0 deletions manifests/file_line.pp
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
class wrappers::file_line (
$resources = {},
$defaults = {},
) {
create_resources('file_line', $resources, $defaults)
}
4 changes: 2 additions & 2 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "echoes-wrappers",
"version": "0.7.2",
"version": "0.8.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 Expand Up @@ -111,6 +111,6 @@
}
],
"dependencies": [
{"name":"puppetlabs/stdlib","version_requirement":">= 1.0.0"}
{"name":"puppetlabs/stdlib","version_requirement":">= 2.0.0"}
]
}

0 comments on commit 784baa5

Please sign in to comment.