]> git.donarmstrong.com Git - dsa-puppet.git/commitdiff
denis: llow ssh from geo[123]
authorPeter Palfrader <peter@palfrader.org>
Tue, 7 Jan 2014 21:53:05 +0000 (22:53 +0100)
committerPeter Palfrader <peter@palfrader.org>
Tue, 7 Jan 2014 21:53:05 +0000 (22:53 +0100)
hieradata/common.yaml
modules/ferm/templates/defs.conf.erb
modules/ferm/templates/me.conf.erb

index c9d346fc20cbae004a1380411d69ecbec1667a9e..0d9ee5f3867821815625a512ac6c63aea0457152 100644 (file)
@@ -21,6 +21,10 @@ roles:
     - senfl.debian.org
     - diamond.debian.org
     - orff.debian.org
+  dns_geo:
+    - geo1.debian.org
+    - geo2.debian.org
+    - geo3.debian.org
   extranrpeclient:
     - denis.debian.org
     - orff.debian.org
index 186feb609118a0330ef5b6305698841aa5f19cf9..bc603b7e214ac8ed6b9ba14ba8c31f072dd7369c 100644 (file)
@@ -63,6 +63,8 @@
 
 @def $HOST_DNS_SECONDARY_V4 = (<%= scope.function_filter_ipv4([rolehost['dns_secondary']]).uniq.join(' ') %>);
 @def $HOST_DNS_SECONDARY_V6 = (<%= scope.function_filter_ipv6([rolehost['dns_secondary']]).uniq.join(' ') %>);
+@def $HOST_DNS_GEO_V4 = (<%= scope.function_filter_ipv4([rolehost['dns_geo']]).uniq.join(' ') %>);
+@def $HOST_DNS_GEO_V6 = (<%= scope.function_filter_ipv6([rolehost['dns_geo']]).uniq.join(' ') %>);
 
 @def $HOST_DEBIAN_V4 = (<%= scope.function_filter_ipv4([dbs]).uniq.join(' ') %>);
 @def $HOST_DEBIAN_V6 = (<%= scope.function_filter_ipv6([dbs]).uniq.join(' ') %>);
index c3df480b05ce1a616863533304ecc4cf0e67561d..9a7dd8b01edacfd9f9078050754fbbd6e0b03a1d 100644 (file)
@@ -8,7 +8,7 @@ nodeinfo = scope.lookupvar('site::nodeinfo')
 out = []
 
 restricted_purposes = ['kvm host', 'central syslog server', 'puppet master', 'jumphost']
-restrict_ssh = %w{lebrun geo1 geo2 geo3 beethoven tchaikovsky schroeder draghi adayevskaya denis}
+restrict_ssh = %w{lebrun beethoven tchaikovsky schroeder draghi adayevskaya}
 
 if (nodeinfo['ldap'].has_key?('purpose')) then
        nodeinfo['ldap']['purpose'].each do |purp|
@@ -21,6 +21,12 @@ end
 ssh4allowed = []
 ssh6allowed = []
 
+should_restrict = restrict_ssh.include?(hostname)
+%w{dns_primary dns_geo}.each do |role_restrict|
+       if scope.function_has_role([role_restrict]) then should_restrict = true
+end
+
+
 if restrict_ssh.include?(hostname) then
        ssh4allowed << %w{$DSA_IPS    $HOST_NAGIOS_V4 $HOST_MUNIN_V4 $HOST_DB_V4}
        ssh6allowed << %w{$DSA_V6_IPS $HOST_NAGIOS_V6 $HOST_MUNIN_V6 $HOST_DB_V6}
@@ -42,8 +48,8 @@ if restrict_ssh.include?(hostname) then
        if scope.function_has_role(['dns_primary']) then
                ssh4allowed << "5.153.231.5" # adayevskaya
                ssh6allowed << "2001:41c8:1000:21::21:5" # adayevskaya
-               ssh4allowed << "$HOST_DNS_SECONDARY_V4"
-               ssh6allowed << "$HOST_DNS_SECONDARY_V6"
+               ssh4allowed << "$HOST_DNS_GEO_V4"
+               ssh6allowed << "$HOST_DNS_GEO_V6"
        end
 
        if scope.function_has_role(['static_master']) then