X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=modules%2Fferm%2Ftemplates%2Fme.conf.erb;h=d0a9aa5d2a49387321fdd5276aba9c4baf6c7540;hb=21ddbd8da1f5f743bb0b2d8417ae37db4e856ea9;hp=ea1b878520d7540f5116e3827b9c8c5c95bfb341;hpb=2e2a6a3b1a42ca3351676096fdaa9f642894cdc8;p=dsa-puppet.git diff --git a/modules/ferm/templates/me.conf.erb b/modules/ferm/templates/me.conf.erb index ea1b8785..d0a9aa5d 100644 --- a/modules/ferm/templates/me.conf.erb +++ b/modules/ferm/templates/me.conf.erb @@ -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,8 +21,16 @@ 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 +end + + if restrict_ssh.include?(hostname) then - ssh4allowed << %w{$DSA_IPS $HOST_NAGIOS_V4 $HOST_MUNIN_V4 $HOST_DB_V4} + 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} if %w{lebrun schroeder}.include?(hostname) then @@ -36,19 +44,23 @@ if restrict_ssh.include?(hostname) then end if %w{adayevskaya}.include?(hostname) then + out << '@def $MFL_LOCAL = ( 130.83.226.60 );' # Michael Fladerer + ssh4allowed << '$MFL_LOCAL' ssh4allowed << %w{$HOST_DEBIAN_V4} ssh6allowed << %w{$HOST_DEBIAN_V6} end - if %w{denis}.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_GEO_V4" + #ssh6allowed << "$HOST_DNS_GEO_V6" end - if scope.function_has_role('static_master') then + if scope.function_has_role(['static_master']) then ssh4allowed << '$HOST_STATIC_V4' ssh6allowed << '$HOST_STATIC_V6' - elsif scope.function_has_role('static_source') or - scope.function_has_role('static_mirror') then + elsif scope.function_has_role(['static_source']) or + scope.function_has_role(['static_mirror']) then ssh4allowed << '$HOST_STATICMASTER_V4' ssh6allowed << '$HOST_STATICMASTER_V6' end