Skip to content

Commit

Permalink
Merge pull request #9 from enterprisemodules/new_release
Browse files Browse the repository at this point in the history
Update to version 0.1.8
  • Loading branch information
ipcrm authored Nov 6, 2020
2 parents d80792f + ec1b52d commit 307e7a9
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
2020-11-20 Release 0.1.6
- Added support for the schedule meta parameter (thx hajee)
2018-02-22 Release 0.1.5
- Add loglevel parameter (thx WhatsARanjit)
2018-02-22 Release 0.1.4
Expand Down
15 changes: 15 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,18 @@ The expected output looks like this:
```
Error: /Echo[TestMessage]/message: Test message
```

You als might want to show the message only during a [puppet schedule](https://puppet.com/docs/puppet/5.5/types/schedule.html). This in coordination with a resource change you have put on this schedule.

```puppet
schedule { 'maintenance':
range => '2 - 4',
period => daily,
repeat => 1,
}
echo {'This will only show in the maintenace window':
message => 'Test message',
schdule => 'maintenance',
}
```
3 changes: 1 addition & 2 deletions metadata.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,13 @@
{
"name": "ipcrm-echo",
"version": "0.1.6",
"version": "0.1.7",
"author": "ipcrm",
"summary": "Prints messages to Puppet report without logging a change",
"license": "Apache-2.0",
"source": "https://github.com/ipcrm/ipcrm-echo",
"project_page": "https://github.com/ipcrm/ipcrm-echo",
"issues_url": "https://github.com/ipcrm/ipcrm-echo/issues",
"dependencies": [

],
"operatingsystem_support": [
{
Expand Down

0 comments on commit 307e7a9

Please sign in to comment.