]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/ferm/templates/me.conf.erb
try to fix errors
[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 nodeinfo = scope.lookupvar('site::nodeinfo')
8 out = []
9
10 restricted_purposes = ['kvm host', 'central syslog server', 'puppet master', 'jumphost']
11 restrict_ssh = %w{lebrun geo1 geo2 geo3 beethoven tchaikovsky schroeder draghi adayevskaya denis}
12
13 if (nodeinfo['ldap'].has_key?('purpose')) then
14         nodeinfo['ldap']['purpose'].each do |purp|
15                 if restricted_purposes.include?(purp) then
16                         restrict_ssh << hostname
17                 end
18         end
19 end
20
21 ssh4allowed = []
22 ssh6allowed = []
23
24 if restrict_ssh.include?(hostname) then
25         ssh4allowed  << %w{$DSA_IPS   $HOST_NAGIOS_V4 $HOST_MUNIN_V4 $HOST_DB_V4}
26         ssh6allowed << %w{$DSA_V6_IPS $HOST_NAGIOS_V6 $HOST_MUNIN_V6 $HOST_DB_V6}
27
28         if %w{lebrun schroeder}.include?(hostname) then
29                 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 );'
30                 ssh4allowed << '$CARNET'
31                 ssh4allowed << '$BUILDD_SSH_ACCESS'
32         end
33         if %w{beethoven draghi}.include?(hostname) then
34                 ssh4allowed << '$HOST_DEBIAN_V4'
35                 ssh6allowed << '$HOST_DEBIAN_V6'
36         end
37
38         if %w{adayevskaya}.include?(hostname) then
39                 ssh4allowed << %w{$HOST_DEBIAN_V4}
40                 ssh6allowed << %w{$HOST_DEBIAN_V6}
41         end
42         if %w{denis}.include?(hostname) then
43                 ssh4allowed << "5.153.231.5" # adayevskaya
44                 ssh6allowed << "2001:41c8:1000:21::21:5" # adayevskaya
45         end
46
47         if scope.function_has_role('static_master') then
48                 ssh4allowed << '$HOST_STATIC_V4'
49                 ssh6allowed << '$HOST_STATIC_V6'
50         elsif scope.function_has_role('static_source') or
51               scope.function_has_role('static_mirror') then
52                 ssh4allowed << '$HOST_STATICMASTER_V4'
53                 ssh6allowed << '$HOST_STATICMASTER_V6'
54         end
55 end
56 ssh4allowed.length == 0 and ssh4allowed << '0.0.0.0/0'
57 ssh6allowed.length == 0 and ssh6allowed << '::/0'
58
59 out << "@def $SSH_SOURCES    = (#{ssh4allowed.join(' ')});"
60 out << "@def $SSH_V6_SOURCES = (#{ssh6allowed.join(' ')});"
61
62
63
64
65 smtp4allowed = []
66 smtp6allowed = []
67
68 if not nodeinfo['smarthost'].empty?
69   smtp4allowed << %w{$HOST_MAILRELAY_V4 $HOST_NAGIOS_V4}
70   smtp6allowed << %w{$HOST_MAILRELAY_V6 $HOST_NAGIOS_V6}
71 end
72
73 smtp4allowed.length == 0 and smtp4allowed << '0.0.0.0/0'
74 smtp6allowed.length == 0 and smtp6allowed << '::/0'
75
76 out << "@def $SMTP_SOURCES    = (#{smtp4allowed.join(' ')});"
77 out << "@def $SMTP_V6_SOURCES = (#{smtp6allowed.join(' ')});"
78
79 out.join("\n")
80 %>