X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/261e7e9cd1a9882faa4ed7087b5902ebafe25988..7e72af6717778f869498e10adcd77404f06c0035:/cookbooks/apt/recipes/default.rb diff --git a/cookbooks/apt/recipes/default.rb b/cookbooks/apt/recipes/default.rb index a8e41cc0f..4282ba107 100644 --- a/cookbooks/apt/recipes/default.rb +++ b/cookbooks/apt/recipes/default.rb @@ -8,7 +8,7 @@ # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# https://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, @@ -17,101 +17,159 @@ # limitations under the License. # -package "apt" -package "update-notifier-common" +package %w[ + apt + apt-transport-https + update-notifier-common +] + +if node[:lsb][:release].to_f < 18.04 + package "gnupg-curl" +end file "/etc/motd.tail" do action :delete end -execute "apt-update" do +apt_update "/etc/apt/sources.list" do action :nothing - command "/usr/bin/apt-get update" end +archive_host = if node[:country] + "#{node[:country]}.archive.ubuntu.com" + else + "archive.ubuntu.com" + end + template "/etc/apt/sources.list" do source "sources.list.erb" owner "root" group "root" - mode 0644 - notifies :run, "execute[apt-update]" + mode 0o644 + variables :archive_host => archive_host, :codename => node[:lsb][:codename] + notifies :update, "apt_update[/etc/apt/sources.list]", :immediately end -apt_source "opscode" do - template "opscode.list.erb" - url "http://apt.opscode.com/" - key "83EF826A" +repository_actions = Hash.new do |_, repository| + node[:apt][:sources].include?(repository) ? :add : :remove end -apt_source "brightbox" do - url "http://apt.brightbox.net/" - key "0090DAAD" +apt_repository "brightbox-ruby-ng" do + action repository_actions["brightbox-ruby-ng"] + uri "ppa:brightbox/ruby-ng" end -apt_source "brightbox-ruby-ng" do - url "http://ppa.launchpad.net/brightbox/ruby-ng/ubuntu" - key "C3173AA6" +apt_repository "ubuntugis-stable" do + action repository_actions["ubuntugis-stable"] + uri "ppa:ubuntugis/ppa" end -apt_source "brightbox-ruby-ng-experimental" do - url "http://ppa.launchpad.net/brightbox/ruby-ng/ubuntu-experimental" - key "C3173AA6" +apt_repository "ubuntugis-unstable" do + action repository_actions["ubuntugis-unstable"] + uri "ppa:ubuntugis/ubuntugis-unstable" end -apt_source "pitti-postgresql" do - url "http://ppa.launchpad.net/pitti/postgresql/ubuntu" - key "8683D8A2" +apt_repository "openstreetmap" do + action repository_actions["openstreetmap"] + uri "ppa:osmadmins/ppa" end -apt_source "ubuntugis-stable" do - url "http://ppa.launchpad.net/ubuntugis/ppa/ubuntu" - key "314DF160" +apt_repository "squid2" do + action repository_actions["squid2"] + uri "ppa:osmadmins/squid2" end -apt_source "ubuntugis-unstable" do - url "http://ppa.launchpad.net/ubuntugis/ubuntugis-unstable/ubuntu" - key "314DF160" +apt_repository "squid3" do + action repository_actions["squid3"] + uri "ppa:osmadmins/squid3" end -apt_source "brianmercer-php" do - url "http://ppa.launchpad.net/brianmercer/php/ubuntu" - key "8D0DC64F" +apt_repository "management-component-pack" do + action repository_actions["management-component-pack"] + uri "https://downloads.linux.hpe.com/SDR/repo/mcp" + if node[:lsb][:release].to_f >= 16.04 + distribution "xenial/current" + else + distribution "#{node[:lsb][:codename]}/current" + end + components ["non-free"] + key "C208ADDE26C2B797" end -apt_source "aw-drupal" do - url "http://ppa.launchpad.net/aw/drupal/ubuntu" - key "7D5AE8F6" +apt_repository "hwraid" do + action repository_actions["hwraid"] + uri "https://hwraid.le-vert.net/ubuntu" + distribution "precise" + components ["main"] + key "6005210E23B3D3B4" end -apt_source "openstreetmap" do - url "http://ppa.launchpad.net/osmadmins/ppa/ubuntu" - key "0AC4F2CB" +apt_repository "nginx" do + action repository_actions["nginx"] + uri "https://nginx.org/packages/ubuntu" + components ["nginx"] + key "ABF5BD827BD9BF62" end -apt_source "proliant-support-pack" do - template "hp.list.erb" - url "http://downloads.linux.hp.com/SDR/downloads/ProLiantSupportPack" - key "2689B887" +apt_repository "elasticsearch5.x" do + action repository_actions["elasticsearch5.x"] + uri "https://artifacts.elastic.co/packages/5.x/apt" + distribution "stable" + components ["main"] + key "D27D666CD88E42B4" end -apt_source "management-component-pack" do - template "hp.list.erb" - url "http://downloads.linux.hp.com/SDR/downloads/ManagementComponentPack" - key "2689B887" +apt_repository "logstash" do + action repository_actions["logstash"] + uri "https://packages.elasticsearch.org/logstash/2.3/debian" + distribution "stable" + components ["main"] + key "D27D666CD88E42B4" end -apt_source "hwraid" do - url "http://hwraid.le-vert.net/ubuntu" - key "23B3D3B4" +apt_repository "passenger" do + action repository_actions["passenger"] + uri "https://oss-binaries.phusionpassenger.com/apt/passenger" + components ["main"] + key "561F9B9CAC40B2F7" end -apt_source "mapnik-v210" do - url "http://ppa.launchpad.net/mapnik/v2.1.0/ubuntu" - key "5D50B6BA" +apt_repository "postgresql" do + action repository_actions["postgresql"] + uri "https://apt.postgresql.org/pub/repos/apt" + distribution "#{node[:lsb][:codename]}-pgdg" + components ["main"] + key "7FCC7D46ACCC4CF8" end -apt_source "nginx" do - template "nginx.list.erb" - url "http://nginx.org/packages/ubuntu" - key "7BD9BF62" +apt_repository "mediawiki" do + action repository_actions["mediawiki"] + uri "https://releases.wikimedia.org/debian" + distribution "jessie-mediawiki" + components ["main"] + key "90E9F83F22250DD7" +end + +package "unattended-upgrades" + +if Dir.exist?("/usr/share/unattended-upgrades") + auto_upgrades = if node[:apt][:unattended_upgrades][:enable] + IO.read("/usr/share/unattended-upgrades/20auto-upgrades") + else + IO.read("/usr/share/unattended-upgrades/20auto-upgrades-disabled") + end + + file "/etc/apt/apt.conf.d/20auto-upgrades" do + user "root" + group "root" + mode 0o644 + content auto_upgrades + end +end + +template "/etc/apt/apt.conf.d/60chef" do + source "apt.conf.erb" + owner "root" + group "root" + mode 0o644 end