5 # Copyright:: 2010, Tom Hughes
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
11 # https://www.apache.org/licenses/LICENSE-2.0
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.
24 update-notifier-common
27 file "/etc/motd.tail" do
31 template "/etc/apt/preferences.d/99-chef" do
32 source "preferences.erb"
38 apt_update "/etc/apt/sources.list" do
42 archive_host = if node[:country]
43 "#{node[:country]}.archive.ubuntu.com"
48 template "/etc/apt/sources.list" do
49 source "sources.list.erb"
53 variables :archive_host => archive_host, :codename => node[:lsb][:codename]
54 notifies :update, "apt_update[/etc/apt/sources.list]", :immediately
57 repository_actions = Hash.new do |_, repository|
58 node[:apt][:sources].include?(repository) ? :add : :remove
61 apt_repository "ubuntugis-stable" do
62 action repository_actions["ubuntugis-stable"]
63 uri "ppa:ubuntugis/ppa"
66 apt_repository "ubuntugis-unstable" do
67 action repository_actions["ubuntugis-unstable"]
68 uri "ppa:ubuntugis/ubuntugis-unstable"
71 apt_repository "git-core" do
72 action repository_actions["git-core"]
73 uri "ppa:git-core/ppa"
76 apt_repository "maxmind" do
77 action repository_actions["maxmind"]
81 apt_repository "openstreetmap" do
82 action repository_actions["openstreetmap"]
83 uri "ppa:osmadmins/ppa"
86 apt_repository "management-component-pack" do
87 action repository_actions["management-component-pack"]
88 uri "https://downloads.linux.hpe.com/SDR/repo/mcp"
89 distribution "bionic/current-gen9"
90 components ["non-free"]
91 key "C208ADDE26C2B797"
94 apt_repository "hwraid" do
95 action repository_actions["hwraid"]
96 uri "https://hwraid.le-vert.net/ubuntu"
97 distribution "precise"
99 key "6005210E23B3D3B4"
102 apt_repository "nginx" do
103 action repository_actions["nginx"]
105 uri "https://nginx.org/packages/ubuntu"
107 key "ABF5BD827BD9BF62"
110 apt_repository "elasticsearch6.x" do
111 action repository_actions["elasticsearch6.x"]
112 uri "https://artifacts.elastic.co/packages/6.x/apt"
113 distribution "stable"
115 key "D27D666CD88E42B4"
118 apt_repository "elasticsearch8.x" do
119 action repository_actions["elasticsearch8.x"]
120 uri "https://artifacts.elastic.co/packages/8.x/apt"
121 distribution "stable"
123 key "D27D666CD88E42B4"
126 apt_repository "passenger" do
127 action repository_actions["passenger"]
128 uri "https://oss-binaries.phusionpassenger.com/apt/passenger"
130 key "561F9B9CAC40B2F7"
133 apt_repository "postgresql" do
134 action repository_actions["postgresql"]
135 uri "https://apt.postgresql.org/pub/repos/apt"
136 distribution "#{node[:lsb][:codename]}-pgdg"
138 key "7FCC7D46ACCC4CF8"
141 apt_repository "docker" do
142 action repository_actions["docker"]
143 uri "https://download.docker.com/linux/ubuntu"
145 components ["stable"]
146 key "https://download.docker.com/linux/ubuntu/gpg"
149 apt_repository "grafana" do
150 action repository_actions["grafana"]
151 uri "https://packages.grafana.com/enterprise/deb"
152 distribution "stable"
154 key "https://packages.grafana.com/gpg.key"
157 apt_repository "timescaledb" do
158 action repository_actions["timescaledb"]
159 uri "https://packagecloud.io/timescale/timescaledb/ubuntu"
161 key "https://packagecloud.io/timescale/timescaledb/gpgkey"
164 package "unattended-upgrades"
166 if Dir.exist?("/usr/share/unattended-upgrades")
167 auto_upgrades = if node[:apt][:unattended_upgrades][:enable]
168 IO.read("/usr/share/unattended-upgrades/20auto-upgrades")
170 IO.read("/usr/share/unattended-upgrades/20auto-upgrades-disabled")
173 file "/etc/apt/apt.conf.d/20auto-upgrades" do
177 content auto_upgrades
181 template "/etc/apt/apt.conf.d/60chef" do
182 source "apt.conf.erb"