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 "brightbox-ruby-ng" do
 
  62   action repository_actions["brightbox-ruby-ng"]
 
  63   uri "ppa:brightbox/ruby-ng"
 
  66 apt_repository "ubuntugis-stable" do
 
  67   action repository_actions["ubuntugis-stable"]
 
  68   uri "ppa:ubuntugis/ppa"
 
  71 apt_repository "ubuntugis-unstable" do
 
  72   action repository_actions["ubuntugis-unstable"]
 
  73   uri "ppa:ubuntugis/ubuntugis-unstable"
 
  76 apt_repository "git-core" do
 
  77   action repository_actions["git-core"]
 
  78   uri "ppa:git-core/ppa"
 
  81 apt_repository "maxmind" do
 
  82   action repository_actions["maxmind"]
 
  86 apt_repository "openstreetmap" do
 
  87   action repository_actions["openstreetmap"]
 
  88   uri "ppa:osmadmins/ppa"
 
  91 apt_repository "squid2" do
 
  92   action repository_actions["squid2"]
 
  93   uri "ppa:osmadmins/squid2"
 
  96 apt_repository "squid3" do
 
  97   action repository_actions["squid3"]
 
  98   uri "ppa:osmadmins/squid3"
 
 101 apt_repository "squid4" do
 
 102   action repository_actions["squid4"]
 
 103   uri "ppa:osmadmins/squid4"
 
 106 apt_repository "management-component-pack" do
 
 107   action repository_actions["management-component-pack"]
 
 108   uri "https://downloads.linux.hpe.com/SDR/repo/mcp"
 
 109   distribution "bionic/current-gen9"
 
 110   components ["non-free"]
 
 111   key "C208ADDE26C2B797"
 
 114 apt_repository "hwraid" do
 
 115   action repository_actions["hwraid"]
 
 116   uri "https://hwraid.le-vert.net/ubuntu"
 
 117   distribution "precise"
 
 119   key "6005210E23B3D3B4"
 
 122 apt_repository "nginx" do
 
 123   action repository_actions["nginx"]
 
 125   uri "https://nginx.org/packages/ubuntu"
 
 127   key "ABF5BD827BD9BF62"
 
 130 apt_repository "elasticsearch5.x" do
 
 131   action repository_actions["elasticsearch5.x"]
 
 132   uri "https://artifacts.elastic.co/packages/5.x/apt"
 
 133   distribution "stable"
 
 135   key "D27D666CD88E42B4"
 
 138 apt_repository "elasticsearch6.x" do
 
 139   action repository_actions["elasticsearch6.x"]
 
 140   uri "https://artifacts.elastic.co/packages/6.x/apt"
 
 141   distribution "stable"
 
 143   key "D27D666CD88E42B4"
 
 146 apt_repository "passenger" do
 
 147   action repository_actions["passenger"]
 
 148   uri "https://oss-binaries.phusionpassenger.com/apt/passenger"
 
 150   key "561F9B9CAC40B2F7"
 
 153 apt_repository "postgresql" do
 
 154   action repository_actions["postgresql"]
 
 155   uri "https://apt.postgresql.org/pub/repos/apt"
 
 156   distribution "#{node[:lsb][:codename]}-pgdg"
 
 158   key "7FCC7D46ACCC4CF8"
 
 161 apt_repository "mediawiki" do
 
 162   action repository_actions["mediawiki"]
 
 163   uri "https://releases.wikimedia.org/debian"
 
 164   distribution "jessie-mediawiki"
 
 166   key "AF380A3036A03444"
 
 169 apt_repository "docker" do
 
 170   action repository_actions["docker"]
 
 171   uri "https://download.docker.com/linux/ubuntu"
 
 173   components ["stable"]
 
 174   key "https://download.docker.com/linux/ubuntu/gpg"
 
 177 apt_repository "grafana" do
 
 178   action repository_actions["grafana"]
 
 179   uri "https://packages.grafana.com/enterprise/deb"
 
 180   distribution "stable"
 
 182   key "https://packages.grafana.com/gpg.key"
 
 185 package "unattended-upgrades"
 
 187 if Dir.exist?("/usr/share/unattended-upgrades")
 
 188   auto_upgrades = if node[:apt][:unattended_upgrades][:enable]
 
 189                     IO.read("/usr/share/unattended-upgrades/20auto-upgrades")
 
 191                     IO.read("/usr/share/unattended-upgrades/20auto-upgrades-disabled")
 
 194   file "/etc/apt/apt.conf.d/20auto-upgrades" do
 
 198     content auto_upgrades
 
 202 template "/etc/apt/apt.conf.d/60chef" do
 
 203   source "apt.conf.erb"