mirror of
https://github.com/falcosecurity/falco.git
synced 2025-10-22 03:49:36 +00:00
13 lines
276 B
Puppet
13 lines
276 B
Puppet
# == Class: falco::config
|
|
class falco::config inherits falco {
|
|
|
|
file { '/etc/falco/falco.yaml':
|
|
notify => Service['falco'],
|
|
ensure => file,
|
|
owner => 'root',
|
|
group => 'root',
|
|
mode => '0644',
|
|
content => template('falco/falco.yaml.erb'),
|
|
}
|
|
|
|
} |