Puppet Class: fail2ban::service

Defined in:
manifests/service.pp

Summary

Enable fail2ban daemon

Overview

fail2ban/manifests/service.pp

This class should not be included directly. Users must use the fail2ban class.



10
11
12
13
14
15
16
17
18
# File 'manifests/service.pp', line 10

class fail2ban::service {

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

}