mirror of
https://github.com/falcosecurity/falco.git
synced 2025-10-22 20:29:39 +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.
12 lines
225 B
Puppet
12 lines
225 B
Puppet
# == Class: falco::service
|
|
class falco::service inherits falco {
|
|
|
|
service { 'falco':
|
|
ensure => running,
|
|
enable => true,
|
|
hasstatus => true,
|
|
hasrestart => true,
|
|
require => Package['falco'],
|
|
}
|
|
}
|