https://github.com/deanwilson/puppet-deprecate
Puppet function to log deprecations in your manifests
https://github.com/deanwilson/puppet-deprecate
function puppet
Last synced: 2 months ago
JSON representation
Puppet function to log deprecations in your manifests
- Host: GitHub
- URL: https://github.com/deanwilson/puppet-deprecate
- Owner: deanwilson
- License: other
- Created: 2015-11-27T14:21:26.000Z (over 9 years ago)
- Default Branch: main
- Last Pushed: 2024-03-11T09:15:24.000Z (about 1 year ago)
- Last Synced: 2024-03-15T11:52:32.538Z (about 1 year ago)
- Topics: function, puppet
- Language: Ruby
- Size: 128 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# puppet-deprecate #
A puppet function to log deprecations in your manifests
[](https://travis-ci.org/deanwilson/puppet-deprecate)
[](https://forge.puppetlabs.com/deanwilson/deprecate)## Introduction ##
Sometimes you need to add resources to your manifests that should only
exist for a set period of time. By adding a call to the `deprecate`
function you can either output a warning in the puppetservers log or
cause the entire run to fail.`deprecate` takes 2 or 3 arguments.
* A date string, in either YYYYMMDD or YYYY-MM-DD formats
* A free form string describing the what and why of the deprecation
* An optional boolean to control if the run should be aborted## Examples ##
class deprecated_resources {
# show a warning in puppetservers log
deprecate('2015-01-20', 'Remove Foo at the end of the contract')# fail the run and show a warning clients output and puppet server logfile
deprecate('2015-01-25', 'Remove Foo at the end of the contract', true)}
# warning in the pupperserver log
13:56:17,938 WARN [puppet-server] Puppet Class[Json_tester]
expired on 20150120: Remove Foo at the end of the contract# error on the client side when abort is set to true
Error: Could not retrieve catalog from remote server:
Error 400 on SERVER: Evaluation Error:
Error while evaluating a Function Call,
Class[Json_tester] expired on 20150120: Remove Foo at the end of the contract
at modules/json_tester/manifests/init.pp:12:3 on node testy## Installation
You can install this module from [PuppetForge](https://forge.puppet.com/):
puppet module install deanwilson-deprecate
### License ###
Apache 2.0 - [Dean Wilson](http://www.unixdaemon.net)