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 apt_update "/etc/apt/sources.list" do
 
  35 archive_host = if node[:country]
 
  36                  "#{node[:country]}.archive.ubuntu.com"
 
  41 template "/etc/apt/sources.list" do
 
  42   source "sources.list.erb"
 
  46   variables :archive_host => archive_host, :codename => node[:lsb][:codename]
 
  47   notifies :update, "apt_update[/etc/apt/sources.list]", :immediately
 
  50 repository_actions = Hash.new do |_, repository|
 
  51   node[:apt][:sources].include?(repository) ? :add : :remove
 
  54 apt_repository "brightbox-ruby-ng" do
 
  55   action repository_actions["brightbox-ruby-ng"]
 
  56   uri "ppa:brightbox/ruby-ng"
 
  59 apt_repository "ubuntugis-stable" do
 
  60   action repository_actions["ubuntugis-stable"]
 
  61   uri "ppa:ubuntugis/ppa"
 
  64 apt_repository "ubuntugis-unstable" do
 
  65   action repository_actions["ubuntugis-unstable"]
 
  66   uri "ppa:ubuntugis/ubuntugis-unstable"
 
  69 apt_repository "openstreetmap" do
 
  70   action repository_actions["openstreetmap"]
 
  71   uri "ppa:osmadmins/ppa"
 
  74 apt_repository "squid2" do
 
  75   action repository_actions["squid2"]
 
  76   uri "ppa:osmadmins/squid2"
 
  79 apt_repository "squid3" do
 
  80   action repository_actions["squid3"]
 
  81   uri "ppa:osmadmins/squid3"
 
  84 apt_repository "management-component-pack" do
 
  85   action repository_actions["management-component-pack"]
 
  86   uri "https://downloads.linux.hpe.com/SDR/repo/mcp"
 
  87   distribution "#{node[:lsb][:codename]}/current-gen9"
 
  88   components ["non-free"]
 
  89   key "C208ADDE26C2B797"
 
  92 apt_repository "hwraid" do
 
  93   action repository_actions["hwraid"]
 
  94   uri "https://hwraid.le-vert.net/ubuntu"
 
  95   distribution "precise"
 
  97   key "6005210E23B3D3B4"
 
 100 apt_repository "nginx" do
 
 101   action repository_actions["nginx"]
 
 103   uri "https://nginx.org/packages/ubuntu"
 
 105   key "ABF5BD827BD9BF62"
 
 108 apt_repository "elasticsearch5.x" do
 
 109   action repository_actions["elasticsearch5.x"]
 
 110   uri "https://artifacts.elastic.co/packages/5.x/apt"
 
 111   distribution "stable"
 
 113   key "D27D666CD88E42B4"
 
 116 apt_repository "elasticsearch6.x" do
 
 117   action repository_actions["elasticsearch6.x"]
 
 118   uri "https://artifacts.elastic.co/packages/6.x/apt"
 
 119   distribution "stable"
 
 121   key "D27D666CD88E42B4"
 
 124 apt_repository "passenger" do
 
 125   action repository_actions["passenger"]
 
 126   uri "https://oss-binaries.phusionpassenger.com/apt/passenger"
 
 128   key "561F9B9CAC40B2F7"
 
 131 apt_repository "postgresql" do
 
 132   action repository_actions["postgresql"]
 
 133   uri "https://apt.postgresql.org/pub/repos/apt"
 
 134   distribution "#{node[:lsb][:codename]}-pgdg"
 
 136   key "7FCC7D46ACCC4CF8"
 
 139 apt_repository "mediawiki" do
 
 140   action repository_actions["mediawiki"]
 
 141   uri "https://releases.wikimedia.org/debian"
 
 142   distribution "jessie-mediawiki"
 
 144   key "90E9F83F22250DD7"
 
 147 package "unattended-upgrades"
 
 149 if Dir.exist?("/usr/share/unattended-upgrades")
 
 150   auto_upgrades = if node[:apt][:unattended_upgrades][:enable]
 
 151                     IO.read("/usr/share/unattended-upgrades/20auto-upgrades")
 
 153                     IO.read("/usr/share/unattended-upgrades/20auto-upgrades-disabled")
 
 156   file "/etc/apt/apt.conf.d/20auto-upgrades" do
 
 160     content auto_upgrades
 
 164 template "/etc/apt/apt.conf.d/60chef" do
 
 165   source "apt.conf.erb"