]> git.openstreetmap.org Git - chef.git/blob - cookbooks/apt/recipes/default.rb
9aa2f7a827760dc54dc5d70c5275c9d42479b496
[chef.git] / cookbooks / apt / recipes / default.rb
1 #
2 # Cookbook:: apt
3 # Recipe:: default
4 #
5 # Copyright:: 2010, Tom Hughes
6 #
7 # Licensed under the Apache License, Version 2.0 (the "License");
8 # you may not use this file except in compliance with the License.
9 # You may obtain a copy of the License at
10 #
11 #     https://www.apache.org/licenses/LICENSE-2.0
12 #
13 # Unless required by applicable law or agreed to in writing, software
14 # distributed under the License is distributed on an "AS IS" BASIS,
15 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 # See the License for the specific language governing permissions and
17 # limitations under the License.
18 #
19
20 package %w[
21   apt
22   apt-transport-https
23   gnupg
24   update-notifier-common
25 ]
26
27 file "/etc/motd.tail" do
28   action :delete
29 end
30
31 template "/etc/apt/preferences.d/99-chef" do
32   source "preferences.erb"
33   owner "root"
34   group "root"
35   mode 0o644
36 end
37
38 apt_update "/etc/apt/sources.list" do
39   action :nothing
40 end
41
42 archive_host = if node[:country]
43                  "#{node[:country]}.archive.ubuntu.com"
44                else
45                  "archive.ubuntu.com"
46                end
47
48 template "/etc/apt/sources.list" do
49   source "sources.list.erb"
50   owner "root"
51   group "root"
52   mode 0o644
53   variables :archive_host => archive_host, :codename => node[:lsb][:codename]
54   notifies :update, "apt_update[/etc/apt/sources.list]", :immediately
55 end
56
57 repository_actions = Hash.new do |_, repository|
58   node[:apt][:sources].include?(repository) ? :add : :remove
59 end
60
61 apt_repository "brightbox-ruby-ng" do
62   action repository_actions["brightbox-ruby-ng"]
63   uri "ppa:brightbox/ruby-ng"
64 end
65
66 apt_repository "ubuntugis-stable" do
67   action repository_actions["ubuntugis-stable"]
68   uri "ppa:ubuntugis/ppa"
69 end
70
71 apt_repository "ubuntugis-unstable" do
72   action repository_actions["ubuntugis-unstable"]
73   uri "ppa:ubuntugis/ubuntugis-unstable"
74 end
75
76 apt_repository "openstreetmap" do
77   action repository_actions["openstreetmap"]
78   uri "ppa:osmadmins/ppa"
79 end
80
81 apt_repository "squid2" do
82   action repository_actions["squid2"]
83   uri "ppa:osmadmins/squid2"
84 end
85
86 apt_repository "squid3" do
87   action repository_actions["squid3"]
88   uri "ppa:osmadmins/squid3"
89 end
90
91 apt_repository "squid4" do
92   action repository_actions["squid4"]
93   uri "ppa:osmadmins/squid4"
94 end
95
96 apt_repository "management-component-pack" do
97   action repository_actions["management-component-pack"]
98   uri "https://downloads.linux.hpe.com/SDR/repo/mcp"
99   distribution "#{node[:lsb][:codename]}/current-gen9"
100   components ["non-free"]
101   key "C208ADDE26C2B797"
102 end
103
104 apt_repository "hwraid" do
105   action repository_actions["hwraid"]
106   uri "https://hwraid.le-vert.net/ubuntu"
107   distribution "precise"
108   components ["main"]
109   key "6005210E23B3D3B4"
110 end
111
112 apt_repository "nginx" do
113   action repository_actions["nginx"]
114   arch "amd64"
115   uri "https://nginx.org/packages/ubuntu"
116   components ["nginx"]
117   key "ABF5BD827BD9BF62"
118 end
119
120 apt_repository "elasticsearch5.x" do
121   action repository_actions["elasticsearch5.x"]
122   uri "https://artifacts.elastic.co/packages/5.x/apt"
123   distribution "stable"
124   components ["main"]
125   key "D27D666CD88E42B4"
126 end
127
128 apt_repository "elasticsearch6.x" do
129   action repository_actions["elasticsearch6.x"]
130   uri "https://artifacts.elastic.co/packages/6.x/apt"
131   distribution "stable"
132   components ["main"]
133   key "D27D666CD88E42B4"
134 end
135
136 apt_repository "passenger" do
137   action repository_actions["passenger"]
138   uri "https://oss-binaries.phusionpassenger.com/apt/passenger"
139   components ["main"]
140   key "561F9B9CAC40B2F7"
141 end
142
143 apt_repository "postgresql" do
144   action repository_actions["postgresql"]
145   uri "https://apt.postgresql.org/pub/repos/apt"
146   distribution "#{node[:lsb][:codename]}-pgdg"
147   components ["main"]
148   key "7FCC7D46ACCC4CF8"
149 end
150
151 apt_repository "mediawiki" do
152   action repository_actions["mediawiki"]
153   uri "https://releases.wikimedia.org/debian"
154   distribution "jessie-mediawiki"
155   components ["main"]
156   key "90E9F83F22250DD7"
157 end
158
159 package "unattended-upgrades"
160
161 if Dir.exist?("/usr/share/unattended-upgrades")
162   auto_upgrades = if node[:apt][:unattended_upgrades][:enable]
163                     IO.read("/usr/share/unattended-upgrades/20auto-upgrades")
164                   else
165                     IO.read("/usr/share/unattended-upgrades/20auto-upgrades-disabled")
166                   end
167
168   file "/etc/apt/apt.conf.d/20auto-upgrades" do
169     user "root"
170     group "root"
171     mode 0o644
172     content auto_upgrades
173   end
174 end
175
176 template "/etc/apt/apt.conf.d/60chef" do
177   source "apt.conf.erb"
178   owner "root"
179   group "root"
180   mode 0o644
181 end