Specifying prerequisites for Puppet custom facts?
- by larsks
I have written a custom Puppet fact that requires the biosdevname tool to be installed. I'm not sure how to set things up correctly such that this tool will be installed before facter tries to instantiate the custom fact.
Facts are loaded early on in the process, so I can't simply put a package { biosdevname: ensure => installed } in the…