do not use role-based ssh restrict
[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         ssh4allowed << %w{$DSA_IPS    $HOST_NAGIOS_V4 $HOST_MUNIN_V4 $HOST_DB_V4}
29         ssh6allowed << %w{$DSA_V6_IPS $HOST_NAGIOS_V6 $HOST_MUNIN_V6 $HOST_DB_V6}
30
31         if %w{draghi}.include?(@hostname) then
32                 ssh4allowed << '$HOST_DEBIAN_V4'
33                 ssh6allowed << '$HOST_DEBIAN_V6'
34         end
35
36         if %w{adayevskaya}.include?(@hostname) then
37                 out << '@def $MFL_LOCAL = ( 130.83.226.60 );' # Michael Fladerer
38                 ssh4allowed << '$MFL_LOCAL'
39                 ssh4allowed << %w{$HOST_DEBIAN_V4}
40                 ssh6allowed << %w{$HOST_DEBIAN_V6}
41         end
42
43         if scope.function_has_role(['debian_mirror']) or
44            scope.function_has_role(['security_mirror']) or
45            scope.function_has_role(['debug_mirror']) or
46            scope.function_has_role(['historical_mirror']) or
47            scope.function_has_role(['syncproxy']) then
48                 ssh4allowed << '$HOST_MIRRORMASTER_V4'
49                 ssh6allowed << '$HOST_MIRRORMASTER_V6'
50         end
51         if scope.function_has_role(['debian_mirror']) or
52            scope.function_has_role(['syncproxy']) then
53                 ssh4allowed << '$HOST_SYNCPROXY_V4'
54                 ssh6allowed << '$HOST_SYNCPROXY_V6'
55         end
56         if scope.function_has_role(['security_mirror']) or
57            scope.function_has_role(['syncproxy']) then
58                 ssh4allowed << '$HOST_SECMASTER_V4'
59                 ssh6allowed << '$HOST_SECMASTER_V6'
60         end
61         if scope.function_has_role(['historical_mirror']) then
62                 ssh4allowed << '$HOST_ARCHIVEMASTER_V4'
63                 ssh6allowed << '$HOST_ARCHIVEMASTER_V6'
64         end
65         if scope.function_has_role(['syncproxy']) then
66                 ssh4allowed << '$HOST_FTPMASTER_V4'
67                 ssh6allowed << '$HOST_FTPMASTER_V6'
68                 ssh4allowed << '$HOST_PORTSMASTER_V4'
69                 ssh6allowed << '$HOST_PORTSMASTER_V6'
70         end
71         if scope.function_has_role(['debug_mirror']) then
72                 ssh4allowed << '$HOST_FTPMASTER_V4'
73                 ssh6allowed << '$HOST_FTPMASTER_V6'
74         end
75 end
76 ssh4allowed.length == 0 and ssh4allowed << '0.0.0.0/0'
77 ssh6allowed.length == 0 and ssh6allowed << '::/0'
78
79 out << "@def $SSH_SOURCES    = ( $SSH_SOURCES    #{ssh4allowed.join(' ')});"
80 out << "@def $SSH_V6_SOURCES = ( $SSH_V6_SOURCES #{ssh6allowed.join(' ')});"
81
82
83
84
85 smtp4allowed = []
86 smtp6allowed = []
87
88 if not nodeinfo['smarthost'].empty?
89   smtp4allowed << %w{$HOST_MAILRELAY_V4 $HOST_NAGIOS_V4}
90   smtp6allowed << %w{$HOST_MAILRELAY_V6 $HOST_NAGIOS_V6}
91 end
92
93 smtp4allowed.length == 0 and smtp4allowed << '0.0.0.0/0'
94 smtp6allowed.length == 0 and smtp6allowed << '::/0'
95
96 out << "@def $SMTP_SOURCES    = (#{smtp4allowed.join(' ')});"
97 out << "@def $SMTP_V6_SOURCES = (#{smtp6allowed.join(' ')});"
98
99 out.join("\n")
100 %>