Skip to content

Commit

Permalink
add irc & irc-ssl outgoing rules
Browse files Browse the repository at this point in the history
  • Loading branch information
duritong committed Feb 6, 2011
1 parent d0d76dc commit 0c5826d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions manifests/rules/out/irc.pp
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
class shorewall::rules::out::irc {
shorewall::rule{'me-net-irc-tcp':
source => '$FW',
destination => 'net',
proto => 'tcp',
destinationport => '6667',
order => 240,
action => 'ACCEPT';
}
}
10 changes: 10 additions & 0 deletions manifests/rules/out/ircs.pp
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
class shorewall::rules::out::ircs {
shorewall::rule{'me-net-ircs-tcp':
source => '$FW',
destination => 'net',
proto => 'tcp',
destinationport => '6669',
order => 240,
action => 'ACCEPT';
}
}

0 comments on commit 0c5826d

Please sign in to comment.