Projet

Général

Profil

Paste
Télécharger au format
Statistiques
| Branche: | Révision:

root / manifests / rules / icinga2.pp @ 9d1ee648

Historique | Voir | Annoter | Télécharger (259 octets)

1
# @summary manage in icinga2
2
# @param ports Specify ports for icinga2
3
class nftables::rules::icinga2 (
4
  Array[Stdlib::Port,1] $ports = [5665],
5
) {
6
  nftables::rule {
7
    'default_in-icinga2':
8
      content => "tcp dport {${join($ports,', ')}} accept",
9
  }
10
}