]> git.donarmstrong.com Git - dsa-puppet.git/blob - modules/ferm/templates/me.conf.erb
Always remove acpi packages from jessie hosts
[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 beethoven tchaikovsky schroeder draghi adayevskaya}
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 %w{dns_primary dns_geo}.each do |role_restrict|
26         if scope.function_has_role([role_restrict]) then
27                 should_restrict = true
28         end
29 end
30
31
32 if restrict_ssh.include?(hostname) then
33         ssh4allowed << %w{$DSA_IPS    $HOST_NAGIOS_V4 $HOST_MUNIN_V4 $HOST_DB_V4}
34         ssh6allowed << %w{$DSA_V6_IPS $HOST_NAGIOS_V6 $HOST_MUNIN_V6 $HOST_DB_V6}
35
36         if %w{lebrun schroeder}.include?(hostname) then
37                 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 );'
38                 ssh4allowed << '$CARNET'
39                 ssh4allowed << '$BUILDD_SSH_ACCESS'
40         end
41         if %w{beethoven draghi}.include?(hostname) then
42                 ssh4allowed << '$HOST_DEBIAN_V4'
43                 ssh6allowed << '$HOST_DEBIAN_V6'
44         end
45
46         if %w{adayevskaya}.include?(hostname) then
47                 out << '@def $MFL_LOCAL = ( 130.83.226.60 );' # Michael Fladerer
48                 ssh4allowed << '$MFL_LOCAL'
49                 ssh4allowed << %w{$HOST_DEBIAN_V4}
50                 ssh6allowed << %w{$HOST_DEBIAN_V6}
51         end
52         if scope.function_has_role(['dns_primary']) then
53                 ssh4allowed << "5.153.231.5" # adayevskaya
54                 ssh6allowed << "2001:41c8:1000:21::21:5" # adayevskaya
55                 #ssh4allowed << "$HOST_DNS_GEO_V4"
56                 #ssh6allowed << "$HOST_DNS_GEO_V6"
57         end
58
59         if scope.function_has_role(['static_master']) then
60                 ssh4allowed << '$HOST_STATIC_V4'
61                 ssh6allowed << '$HOST_STATIC_V6'
62         elsif scope.function_has_role(['static_source']) or
63               scope.function_has_role(['static_mirror']) then
64                 ssh4allowed << '$HOST_STATICMASTER_V4'
65                 ssh6allowed << '$HOST_STATICMASTER_V6'
66         end
67 end
68 ssh4allowed.length == 0 and ssh4allowed << '0.0.0.0/0'
69 ssh6allowed.length == 0 and ssh6allowed << '::/0'
70
71 out << "@def $SSH_SOURCES    = (#{ssh4allowed.join(' ')});"
72 out << "@def $SSH_V6_SOURCES = (#{ssh6allowed.join(' ')});"
73
74
75
76
77 smtp4allowed = []
78 smtp6allowed = []
79
80 if not nodeinfo['smarthost'].empty?
81   smtp4allowed << %w{$HOST_MAILRELAY_V4 $HOST_NAGIOS_V4}
82   smtp6allowed << %w{$HOST_MAILRELAY_V6 $HOST_NAGIOS_V6}
83 end
84
85 smtp4allowed.length == 0 and smtp4allowed << '0.0.0.0/0'
86 smtp6allowed.length == 0 and smtp6allowed << '::/0'
87
88 out << "@def $SMTP_SOURCES    = (#{smtp4allowed.join(' ')});"
89 out << "@def $SMTP_V6_SOURCES = (#{smtp6allowed.join(' ')});"
90
91 out.join("\n")
92 %>