Puppet Class: falcon::config
- Defined in:
-
manifests/config.pp
Summary
This class handles the configuration of the falcon server.
Overview
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# File 'manifests/config.pp', line 6
class falcon::config {
if $falcon::config_manage and $facts['kernel'] == 'Linux' {
falconctl { 'falcon':
cid => $falcon::cid.unwrap,
provisioning_token => $falcon::provisioning_token,
proxy_host => $falcon::proxy_host,
proxy_port => $falcon::proxy_port,
proxy_enabled => $falcon::proxy_enabled,
tags => $falcon::tags,
tag_membership => $falcon::tag_membership,
}
}
}
|