Puppet Class: fail2ban::service

Defined in:
manifests/service.pp

Overview

class fail2ban::service This class should not be included directly; use the main fail2ban class.



3
4
5
6
7
8
9
10
11
12
13
# File 'manifests/service.pp', line 3

class fail2ban::service {

  include ::fail2ban

  service { 'fail2ban':
    ensure    => running,
    enable    => true,
    hasstatus => true,
  }

}