summaryrefslogtreecommitdiff
path: root/manifests/rules/out/ibackup.pp
blob: 856bcdb9139dc0a5213437dd63d1c2ddb3a18395 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
class shorewall::rules::out::ibackup(
  $backup_host
){
  shorewall::rule { 'me-net-tcp_backupssh':
    source          => '$FW',
    destination     => "net:${backup_host}",
    proto           => 'tcp',
    destinationport => 'ssh',
    order           => 240,
    action          => 'ACCEPT';
  }
}