Puppet Class: vulnerability::clear_facter_cache
- Defined in:
- manifests/clear_facter_cache.pp
Summary
Clear the `cve_list` facter cache.Overview
vulnerability::clear_facter_cache
This measn that on the next Puppet run, the fact will be determined again.
See the file “LICENSE” for the full license governing this code.
10 11 12 13 14 15 |
# File 'manifests/clear_facter_cache.pp', line 10
class vulnerability::clear_facter_cache () {
fact_cache { 'cve_list':
ensure => absent,
refreshonly => true,
}
}
|