mirror of
https://github.com/falcosecurity/falco.git
synced 2025-10-23 12:59:45 +00:00
Add an example puppet module for falco. This module configures the main falco configuration file /etc/falco/falco.yaml, providing templates for all configuration options. It installs falco using debian/rpm packages and installs/manages it as a systemd service.
6 lines
118 B
Puppet
6 lines
118 B
Puppet
# == Class: falco::install
|
|
class falco::install inherits falco {
|
|
package { 'falco':
|
|
ensure => installed,
|
|
}
|
|
} |