Projet

Général

Profil

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

root / manifests / rules / icinga2.pp @ a98c98d4

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

1 40b19655 tr
# manage in icinga2
2
class nftables::rules::icinga2(
3
  Array[Integer,1]
4
    $ports = [5665],
5
) {
6
  nftables::filter::chain::rule{
7
    'default_in-icinga2':
8
      content => "tcp dport {${join($ports,', ')}} accept",
9
  }
10
}