Files

18 lines
528 B
ObjectPascal
Raw Permalink Normal View History

2026-03-11 12:12:23 +01:00
## confdroid_fail2ban::main::service.pp
# Module name: confdroid_fail2ban
# Author: 12ww1160 (12ww1160@confdroid.com)
# @summary Class manages the service(s) for confdroid_fail2ban.
2017-08-03 13:07:42 +01:00
#############################################################################
2026-03-11 12:12:23 +01:00
class confdroid_fail2ban::main::service (
2017-08-03 13:07:42 +01:00
2026-03-11 12:12:23 +01:00
) inherits confdroid_fail2ban::params {
require confdroid_fail2ban::main::files
2017-08-03 13:07:42 +01:00
service { $fn_service:
2025-03-02 23:30:48 +01:00
ensure => $fn_enable_service,
hasstatus => true,
hasrestart => true,
enable => true,
2017-08-03 13:07:42 +01:00
}
}