Projet

Général

Profil

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

root / manifests / rules / icinga2.pp @ b9785000

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

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