]> git.donarmstrong.com Git - dsa-puppet.git/blobdiff - modules/ferm/templates/me.conf.erb
prepare to add salieri to ganeti2
[dsa-puppet.git] / modules / ferm / templates / me.conf.erb
index 0633e788582edb2ad276c3f4ebb25c6d9d0cd378..69b8fa5dd21280d50fe6e94210232e7d412b5a21 100644 (file)
@@ -4,79 +4,61 @@
 ##
 
 <%=
-  out=''
-  case hostname
-  when 'schroeder' then 
-    out = '@def $CARNET = ( 193.198.184.8/29 161.53.160.133 161.53.160.90 161.53.11.222 161.53.12.134 161.53.12.142 161.53.12.143 )'
-  end
-  out
-%>
-
-@def $SSH_SOURCES = (<%=
+out = []
 
-sshallowed = []
+restricted_purposes = {'kvm host', 'central syslog server', 'puppet master', 'jumphost'}
+restrict_ssh = %w{lebrun geo1 geo2 geo3 beethoven tchaikovsky schroeder draghi}
 
-case hostname
-  when 'logtest01', 'geo1', 'geo2', 'geo3', 'bartok', 'beethoven', 'tchaikovsky' then sshallowed << [ '$DSA_IPS', '$HOST_NAGIOS_V4', '$HOST_DB_V4' ]
-  when 'schroeder' then sshallowed << [ '$DSA_IPS', '$HOST_NAGIOS_V4', '$HOST_DB_V4', '$CARNET' ]
+if (scope.lookupvar('site::nodeinfo')['ldap'].has_key?('purpose')) then
+       scope.lookupvar('site::nodeinfo')['ldap']['purpose'].each do |purp|
+               if restricted_purposes.include?(purp) then
+                       restrict_ssh << hostname
+               end
+       end
 end
 
-case hostname
-  when 'bartok', 'beethoven' then sshallowed << '$HOST_DEBIAN_V4'
-end
+ssh4allowed = []
+ssh6allowed = []
 
-if sshallowed.length == 0
-  sshallowed = [ '0.0.0.0/0' ]
+if restrict_ssh.include?(hostname) then
+       ssh4allowed  << %w{$DSA_IPS $HOST_NAGIOS_V4 $HOST_DB_V4}
+       ssh6allowed << %w{$DSA_V6_IPS $HOST_NAGIOS_V6 $HOST_DB_V6}
 end
-
-sshallowed.join(' ')
-%>);
-
-@def $SSH_V6_SOURCES = (<%=
-
-sshallowed = []
-
-case hostname
-  when 'logtest01', 'geo1', 'geo2', 'geo3', 'bartok', 'beethoven', 'schroeder', 'tchaikovsky' then sshallowed << [ '$DSA_V6_IPS', '$HOST_NAGIOS_V6', '$HOST_DB_V6' ]
+if %w{lebrun schroeder}.include?(hostname) then
+       out << '@def $CARNET = ( 193.198.184.8/29 161.53.160.133 161.53.160.90 161.53.11.222 161.53.12.134 161.53.12.142 161.53.12.143 );'
+       ssh4allowed << '$CARNET'
+       ssh4allowed << '$BUILDD_SSH_ACCESS'
 end
-
-case hostname
-  when 'bartok', 'beethoven' then sshallowed << '$HOST_DEBIAN_V6'
+if %w{beethoven draghi}.include?(hostname) then
+       ssh4allowed << '$HOST_DEBIAN_V4'
+       ssh6allowed << '$HOST_DEBIAN_V6'
 end
-
-if sshallowed.length == 0
-  sshallowed = [ '::' ]
+if %w{unger}.include?(hostname) then
+       ssh4allowed << '$UNGER_SSH_ACCESS'  # Ganneff
+       ssh6allowed << '$UNGER_SSH6_ACCESS' # Ganneff, but more address space
 end
+ssh4allowed.length == 0 and ssh4allowed << '0.0.0.0/0'
+ssh6allowed.length == 0 and ssh6allowed << '::/0'
 
-sshallowed.join(' ')
-%>);
+out << "@def $SSH_SOURCES    = (#{ssh4allowed.join(' ')});"
+out << "@def $SSH_V6_SOURCES = (#{ssh6allowed.join(' ')});"
 
-def $SMTP_SOURCES =(<%=
 
-smtpallowed = []
 
-if not nodeinfo['smarthost'].empty?
-  smtpallowed = [ '$HOST_MAILRELAY_V4', '$HOST_NAGIOS_V4' ]
-end
-
-if smtpallowed.length == 0
-  smtpallowed = [ '0.0.0.0/0' ]
-end
-
-smtpallowed.join(' ')
-%>);
 
-def $SMTP_V6_SOURCES =(<%=
+smtp4allowed = []
+smtp6allowed = []
 
-smtpallowed = []
-
-if not nodeinfo['smarthost'].empty?
-  smtpallowed = [ '$HOST_MAILRELAY_V6', '$HOST_NAGIOS_V6' ]
+if not scope.lookupvar('site::nodeinfo')['smarthost'].empty?
+  smtp4allowed << %w{$HOST_MAILRELAY_V4 $HOST_NAGIOS_V4}
+  smtp6allowed << %w{$HOST_MAILRELAY_V6 $HOST_NAGIOS_V6}
 end
 
-if smtpallowed.length == 0
-  smtpallowed = [ '::' ]
-end
+smtp4allowed.length == 0 and smtp4allowed << '0.0.0.0/0'
+smtp6allowed.length == 0 and smtp6allowed << '::/0'
 
-smtpallowed.join(' ')
-%>);
+out << "@def $SMTP_SOURCES    = (#{smtp4allowed.join(' ')});"
+out << "@def $SMTP_V6_SOURCES = (#{smtp6allowed.join(' ')});"
+
+out.join("\n")
+%>