18 lines
528 B
Puppet
18 lines
528 B
Puppet
## confdroid_fail2ban::main::service.pp
|
|
# Module name: confdroid_fail2ban
|
|
# Author: 12ww1160 (12ww1160@confdroid.com)
|
|
# @summary Class manages the service(s) for confdroid_fail2ban.
|
|
#############################################################################
|
|
class confdroid_fail2ban::main::service (
|
|
|
|
) inherits confdroid_fail2ban::params {
|
|
require confdroid_fail2ban::main::files
|
|
|
|
service { $fn_service:
|
|
ensure => $fn_enable_service,
|
|
hasstatus => true,
|
|
hasrestart => true,
|
|
enable => true,
|
|
}
|
|
}
|