14 lines
465 B
Puppet
14 lines
465 B
Puppet
## confdroid_gitea::main::service.pp
|
|
# Module name: confdroid_gitea
|
|
# Author: 12ww1160 (12ww1160@confdroid.com)
|
|
# @summary manages the services for the confdroid_gitea Puppet module.
|
|
##############################################################################
|
|
class confdroid_gitea::main::service (
|
|
|
|
) inherits confdroid_gitea::params {
|
|
if $ga_host_fqdn == $fqdn {
|
|
require confdroid_gitea::firewall::iptables
|
|
require confdroid_gitea::main::files
|
|
}
|
|
}
|