- Learning Puppet Security
- Jason Slagle
- 221字
- 2021-07-23 19:49:41
Change tracking with Puppet
Puppet has a variety of ways to track changes. In its normal mode of operation, Puppet will track (and correct) changes to any resources in its catalog. This is by its nature what it's designed for. This can let you know that items have changed, but at the same time let you know that you can correct them to be the way you want them to be specified.
If you don't have a set state for your resources and you just want to know whether they have changed, you can use the audit meta-parameter. There is some evidence that this will be deprecated in Puppet 4; however, it is currently still available as this book is being written.
Finally, one can use noop to monitor changes. In this mode, Puppet will report on any changes to a resource from its baseline; however, it will not make an effort to change them back.
Noop can be used in a variety of fashions and will be covered at the end of the chapter.
The following table summarizes the available change tracking options:

We'll cover the audit and noop methodologies later in the section. We've already covered what can be done with declared resources in the previous chapter, and we will continue to build on it in the later chapters.
- Learning Scala Programming
- scikit-learn Cookbook
- TypeScript入門與實戰
- 在最好的年紀學Python:小學生趣味編程
- 看透JavaScript:原理、方法與實踐
- 網頁設計與制作教程(HTML+CSS+JavaScript)(第2版)
- Python程序設計案例教程
- Kotlin Standard Library Cookbook
- Python完全自學教程
- 小程序開發原理與實戰
- Swift語言實戰精講
- Programming with CodeIgniterMVC
- 匯編語言編程基礎:基于LoongArch
- 深度學習原理與PyTorch實戰(第2版)
- Clean Code in C#