]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/ferm/templates/me.conf.erb
prepare to add salieri to ganeti2
[dsa-puppet.git] / modules / ferm / templates / me.conf.erb
1 ##
2 ## THIS FILE IS UNDER PUPPET CONTROL. DON'T EDIT IT HERE.
3 ## USE: git clone git+ssh://$USER@puppet.debian.org/srv/puppet.debian.org/git/dsa-puppet.git
4 ##
5
6 <%=
7 out = []
8
9 restricted_purposes = {'kvm host', 'central syslog server', 'puppet master', 'jumphost'}
10 restrict_ssh = %w{lebrun geo1 geo2 geo3 beethoven tchaikovsky schroeder draghi}
11
12 if (scope.lookupvar('site::nodeinfo')['ldap'].has_key?('purpose')) then
13         scope.lookupvar('site::nodeinfo')['ldap']['purpose'].each do |purp|
14                 if restricted_purposes.include?(purp) then
15                         restrict_ssh << hostname
16                 end
17         end
18 end
19
20 ssh4allowed = []
21 ssh6allowed = []
22
23 if restrict_ssh.include?(hostname) then
24         ssh4allowed  << %w{$DSA_IPS $HOST_NAGIOS_V4 $HOST_DB_V4}
25         ssh6allowed << %w{$DSA_V6_IPS $HOST_NAGIOS_V6 $HOST_DB_V6}
26 end
27 if %w{lebrun schroeder}.include?(hostname) then
28         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 );'
29         ssh4allowed << '$CARNET'
30         ssh4allowed << '$BUILDD_SSH_ACCESS'
31 end
32 if %w{beethoven draghi}.include?(hostname) then
33         ssh4allowed << '$HOST_DEBIAN_V4'
34         ssh6allowed << '$HOST_DEBIAN_V6'
35 end
36 if %w{unger}.include?(hostname) then
37         ssh4allowed << '$UNGER_SSH_ACCESS'  # Ganneff
38         ssh6allowed << '$UNGER_SSH6_ACCESS' # Ganneff, but more address space
39 end
40 ssh4allowed.length == 0 and ssh4allowed << '0.0.0.0/0'
41 ssh6allowed.length == 0 and ssh6allowed << '::/0'
42
43 out << "@def $SSH_SOURCES    = (#{ssh4allowed.join(' ')});"
44 out << "@def $SSH_V6_SOURCES = (#{ssh6allowed.join(' ')});"
45
46
47
48
49 smtp4allowed = []
50 smtp6allowed = []
51
52 if not scope.lookupvar('site::nodeinfo')['smarthost'].empty?
53   smtp4allowed << %w{$HOST_MAILRELAY_V4 $HOST_NAGIOS_V4}
54   smtp6allowed << %w{$HOST_MAILRELAY_V6 $HOST_NAGIOS_V6}
55 end
56
57 smtp4allowed.length == 0 and smtp4allowed << '0.0.0.0/0'
58 smtp6allowed.length == 0 and smtp6allowed << '::/0'
59
60 out << "@def $SMTP_SOURCES    = (#{smtp4allowed.join(' ')});"
61 out << "@def $SMTP_V6_SOURCES = (#{smtp6allowed.join(' ')});"
62
63 out.join("\n")
64 %>