f23946b01b7f3c75b14c2ec71b1345de2a1d9d8c
[mirror/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('deprecated::nodeinfo')
8 out = []
9
10 restricted_purposes = ['kvm host', 'ganeti/kvm host', 'central syslog server', 'puppet master', 'jumphost', 'buildd', 'static-mirror', 'anycast mirror']
11 restrict_ssh = %w{tchaikovsky draghi adayevskaya static-master-grnet-01 static-master-ubc-01 geo1 geo2 geo3 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 should_restrict = restrict_ssh.include?(@hostname)
25
26
27 if should_restrict then
28         # draghi makes for a nice jumphost
29         ssh4allowed << %w{$DSA_IPS    $HOST_NAGIOS_V4 $HOST_MUNIN_V4  82.195.75.106}
30         ssh6allowed << %w{$DSA_V6_IPS $HOST_NAGIOS_V6 $HOST_MUNIN_V6  2001:41b8:202:deb:1a1a:0:52c3:4b6a}
31
32         if %w{draghi}.include?(@hostname) then
33                 ssh4allowed << '$HOST_DEBIAN_V4'
34                 ssh6allowed << '$HOST_DEBIAN_V6'
35         end
36
37         if %w{adayevskaya}.include?(@hostname) then
38                 out << '@def $MFL_LOCAL = ( 130.83.226.60 );' # Michael Fladerer
39                 ssh4allowed << '$MFL_LOCAL'
40                 ssh4allowed << %w{$HOST_DEBIAN_V4}
41                 ssh6allowed << %w{$HOST_DEBIAN_V6}
42         end
43
44         if scope.function_has_role(['debian_mirror']) or
45            scope.function_has_role(['security_mirror']) or
46            scope.function_has_role(['ports_mirror']) or
47            scope.function_has_role(['debug_mirror']) or
48            scope.function_has_role(['historical_mirror']) or
49            scope.function_has_role(['syncproxy']) then
50                 ssh4allowed << '$HOST_MIRRORMASTER_V4'
51                 ssh6allowed << '$HOST_MIRRORMASTER_V6'
52         end
53         if scope.function_has_role(['debian_mirror']) or
54            scope.function_has_role(['syncproxy']) then
55                 ssh4allowed << '$HOST_SYNCPROXY_V4'
56                 ssh6allowed << '$HOST_SYNCPROXY_V6'
57         end
58         if scope.function_has_role(['security_mirror']) or
59            scope.function_has_role(['syncproxy']) then
60                 ssh4allowed << '$HOST_SECMASTER_V4'
61                 ssh6allowed << '$HOST_SECMASTER_V6'
62         end
63         if scope.function_has_role(['historical_mirror']) then
64                 ssh4allowed << '$HOST_ARCHIVEMASTER_V4'
65                 ssh6allowed << '$HOST_ARCHIVEMASTER_V6'
66         end
67         if scope.function_has_role(['syncproxy']) then
68                 ssh4allowed << '$HOST_FTPMASTER_V4'
69                 ssh6allowed << '$HOST_FTPMASTER_V6'
70                 ssh4allowed << '$HOST_PORTSMASTER_V4'
71                 ssh6allowed << '$HOST_PORTSMASTER_V6'
72         end
73         if scope.function_has_role(['debug_mirror']) then
74                 ssh4allowed << '$HOST_FTPMASTER_V4'
75                 ssh6allowed << '$HOST_FTPMASTER_V6'
76         end
77 end
78 ssh4allowed.length == 0 and ssh4allowed << '0.0.0.0/0'
79 ssh6allowed.length == 0 and ssh6allowed << '::/0'
80
81 out << "@def $SSH_SOURCES    = ( $SSH_SOURCES    #{ssh4allowed.join(' ')});"
82 out << "@def $SSH_V6_SOURCES = ( $SSH_V6_SOURCES #{ssh6allowed.join(' ')});"
83
84
85
86
87 smtp4allowed = []
88 smtp6allowed = []
89
90 if not nodeinfo['smarthost'].empty?
91   smtp4allowed << %w{$HOST_MAILRELAY_V4 $HOST_NAGIOS_V4}
92   smtp6allowed << %w{$HOST_MAILRELAY_V6 $HOST_NAGIOS_V6}
93 end
94
95 smtp4allowed.length == 0 and smtp4allowed << '0.0.0.0/0'
96 smtp6allowed.length == 0 and smtp6allowed << '::/0'
97
98 out << "@def $SMTP_SOURCES    = (#{smtp4allowed.join(' ')});"
99 out << "@def $SMTP_V6_SOURCES = (#{smtp6allowed.join(' ')});"
100
101 out.join("\n")
102 %>