X-Git-Url: https://git.openstreetmap.org/chef.git/blobdiff_plain/805ab61e66fe3adb45e57f50e49b168d84a6a8b1..HEAD:/cookbooks/apt/recipes/default.rb diff --git a/cookbooks/apt/recipes/default.rb b/cookbooks/apt/recipes/default.rb index 4b5fdf7a7..9627bf4d4 100644 --- a/cookbooks/apt/recipes/default.rb +++ b/cookbooks/apt/recipes/default.rb @@ -1,14 +1,14 @@ # -# Cookbook Name:: apt +# Cookbook:: apt # Recipe:: default # -# Copyright 2010, Tom Hughes +# Copyright:: 2010, Tom Hughes # # Licensed under the Apache License, Version 2.0 (the "License"); # 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,90 +17,99 @@ # limitations under the License. # -package "apt" -package "update-notifier-common" +package %w[ + apt + apt-transport-https + gnupg +] + +package "update-notifier-common" if platform?("ubuntu") file "/etc/motd.tail" do action :delete end -execute "apt-update" do - action :nothing - command "/usr/bin/apt-get update" -end - -template "/etc/apt/sources.list" do - source "sources.list.erb" - owner "root" - group "root" - mode 0644 - notifies :run, resources(:execute => "apt-update") -end - -apt_source "opscode" do - template "opscode.list.erb" - url "http://apt.opscode.com/" - key "83EF826A" -end - -apt_source "brightbox" do - url "http://apt.brightbox.net/" - key "0090DAAD" -end - -apt_source "brightbox-ruby-ng" do - url "http://ppa.launchpad.net/brightbox/ruby-ng/ubuntu" - key "C3173AA6" -end - -apt_source "brightbox-ruby-ng-experimental" do - url "http://ppa.launchpad.net/brightbox/ruby-ng/ubuntu-experimental" - key "C3173AA6" +# FIXME: cleanup old package pin method for cciss-vol-status +file "/etc/apt/preferences.d/99-chef" do + action :delete end -apt_source "pitti-postgresql" do - url "http://ppa.launchpad.net/pitti/postgresql/ubuntu" - key "8683D8A2" +apt_preference "cciss-vol-status" do + pin "origin *.ubuntu.com" + pin_priority "1100" end -apt_source "ubuntugis-stable" do - url "http://ppa.launchpad.net/ubuntugis/ppa/ubuntu" - key "314DF160" +apt_update "/etc/apt/sources.list" do + action :nothing end -apt_source "ubuntugis-unstable" do - url "http://ppa.launchpad.net/ubuntugis/ubuntugis-unstable/ubuntu" - key "314DF160" +if platform?("debian") + archive_host = "deb.debian.org" + archive_security_host = archive_host + archive_distro = "debian" + archive_security_distro = "debian-security" + archive_suites = %w[main updates backports security] + archive_components = %w[main contrib non-free non-free-firmware] +elsif intel? + archive_host = if node[:country] + "#{node[:country]}.archive.ubuntu.com" + else + "archive.ubuntu.com" + end + archive_security_host = "security.ubuntu.com" + archive_distro = "ubuntu" + archive_security_distro = archive_distro + archive_suites = %w[main updates backports security] + archive_components = %w[main restricted universe multiverse] +else + archive_host = "ports.ubuntu.com" + archive_security_host = archive_host + archive_distro = "ubuntu-ports" + archive_security_distro = archive_distro + archive_suites = %w[main updates backports security] + archive_components = %w[main restricted universe multiverse] end -apt_source "brianmercer-php" do - url "http://ppa.launchpad.net/brianmercer/php/ubuntu" - key "8D0DC64F" +template "/etc/apt/sources.list" do + source "sources.list.erb" + owner "root" + group "root" + mode "644" + variables :archive_host => archive_host, + :archive_security_host => archive_security_host, + :archive_distro => archive_distro, + :archive_security_distro => archive_security_distro, + :archive_suites => archive_suites, + :archive_components => archive_components, + :codename => node[:lsb][:codename] + notifies :update, "apt_update[/etc/apt/sources.list]", :immediately end -apt_source "aw-drupal" do - url "http://ppa.launchpad.net/aw/drupal/ubuntu" - key "7D5AE8F6" +apt_repository "openstreetmap" do + uri "ppa:osmadmins/ppa" + only_if { platform?("ubuntu") } end -apt_source "openstreetmap" do - url "http://ppa.launchpad.net/osmadmins/ppa/ubuntu" - key "0AC4F2CB" -end +package "unattended-upgrades" -apt_source "proliant-support-pack" do - template "hp.list.erb" - url "http://downloads.linux.hp.com/SDR/downloads/ProLiantSupportPack" - key "2689B887" -end +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 -apt_source "management-component-pack" do - template "hp.list.erb" - url "http://downloads.linux.hp.com/SDR/downloads/ManagementComponentPack" - key "2689B887" + file "/etc/apt/apt.conf.d/20auto-upgrades" do + user "root" + group "root" + mode "644" + content auto_upgrades + end end -apt_source "mapnik-v210" do - url "http://ppa.launchpad.net/mapnik/v2.1.0/ubuntu" - key "5D50B6BA" +template "/etc/apt/apt.conf.d/60chef" do + source "apt.conf.erb" + owner "root" + group "root" + mode "644" end