I have the following puppet module:
selboolean { 'scan system':
name => 'scan system',
persistent => true,
provider => 'antivirus_can_scan_system',
value => on,
}
When I deploy the module, I get the following error:
Error: Failed to apply catalog: Parameter provider failed on Selboolean[scan system]: Invalid selboolean provider 'antivirus_can_scan_system' at /file/path/selinux.pp
I am not really familiar with Puppet language, so I am not sure what's I am doing wrong here. Any help appreciated. Thanks
↧