Version information
released Nov 27th 2015
This version is compatible with:
- RedHat, Ubuntu, Debian, Fedora, CentOS
Start using this module
Add this module to your Puppetfile:
mod 'deanwilson-deprecate', '0.0.2'
Learn more about managing modules with a PuppetfileDocumentation
deanwilson/deprecate — version 0.0.2 Nov 27th 2015
puppet-deprecate
A puppet function to log deprecations in your manifests
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 masters logfile
deprecate('2015-01-25', 'Remove Foo at the end of the contract', true)
}
# warning in the puppermaster 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
License
Apache 2.0 - Dean Wilson
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.