Puppet Class: wildfly::external_facts
- Defined in:
- manifests/external_facts.pp
Overview
Set external wildflty facts
4 5 6 7 8 9 10 11 12 13 14 15 |
# File 'manifests/external_facts.pp', line 4
class wildfly::external_facts {
file { '/opt/puppetlabs/facter/facts.d/wildfly.yaml':
ensure => file,
content => epp('wildfly/facts.yaml'),
}
file { '/opt/puppetlabs/facter/facts.d/wildfly_is_running.sh':
ensure => file,
mode => '1755',
content => epp('wildfly/wildfly_is_running.sh'),
}
}
|