Dzahn has uploaded a new change for review.

  https://gerrit.wikimedia.org/r/184803

Change subject: udp2log: fix ferm error with udp2log_rsyncd
......................................................................

udp2log: fix ferm error with udp2log_rsyncd

The former syntax causes:

<snip>
...
Error in /etc/ferm/conf.d/10_udp2log_rsyncd line 4:
& R_SERVICE
(
    tcp , 873 , @hosts_allow <--
unknown ferm built-in function
...
</snip>

the only host in allowed_hosts is stat1002 anyways, just using it's IP for now 
to fix it and be able to start ferm service

Change-Id: I0c8167b8a4d597d7bc20159f7c64e096e7777e16
---
M manifests/misc/udp2log.pp
1 file changed, 1 insertion(+), 1 deletion(-)


  git pull ssh://gerrit.wikimedia.org:29418/operations/puppet 
refs/changes/03/184803/1

diff --git a/manifests/misc/udp2log.pp b/manifests/misc/udp2log.pp
index 089fbe5..c9218cc 100644
--- a/manifests/misc/udp2log.pp
+++ b/manifests/misc/udp2log.pp
@@ -69,7 +69,7 @@
     ferm::service { 'udp2log_rsyncd':
         proto  => 'tcp',
         port   => '873',
-        srange => inline_template('@hosts_allow.join(" ")')
+        srange => '10.64.5.102/32',
     }
 }
 

-- 
To view, visit https://gerrit.wikimedia.org/r/184803
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: I0c8167b8a4d597d7bc20159f7c64e096e7777e16
Gerrit-PatchSet: 1
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Dzahn <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to