summaryrefslogtreecommitdiff
path: root/manifests/rules/out/ibackup.pp
diff options
context:
space:
mode:
authormh <mh@immerda.ch>2012-06-13 21:34:55 -0300
committermh <mh@immerda.ch>2012-06-13 21:34:55 -0300
commit210b66ab54f1c57a10a2e9a342559f77e649658f (patch)
tree01a9ff90a2905736b9c7a52004c97f3e383bd4ba /manifests/rules/out/ibackup.pp
parentd1c97a77e3ab7add830ba1f0f377e57b612c44d8 (diff)
migrate away from hiera stuff
Diffstat (limited to 'manifests/rules/out/ibackup.pp')
-rw-r--r--manifests/rules/out/ibackup.pp20
1 files changed, 10 insertions, 10 deletions
diff --git a/manifests/rules/out/ibackup.pp b/manifests/rules/out/ibackup.pp
index 48714af..856bcdb 100644
--- a/manifests/rules/out/ibackup.pp
+++ b/manifests/rules/out/ibackup.pp
@@ -1,12 +1,12 @@
class shorewall::rules::out::ibackup(
- $backup_host = hiera('shorewall_ibackup_host')
-) {
- shorewall::rule { 'me-net-tcp_backupssh':
- source => '$FW',
- destination => "net:${backup_host}",
- proto => 'tcp',
- destinationport => 'ssh',
- order => 240,
- action => 'ACCEPT';
- }
+ $backup_host
+){
+ shorewall::rule { 'me-net-tcp_backupssh':
+ source => '$FW',
+ destination => "net:${backup_host}",
+ proto => 'tcp',
+ destinationport => 'ssh',
+ order => 240,
+ action => 'ACCEPT';
+ }
}