+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_repository "docker" do
+ action repository_actions["docker"]
+ uri "https://download.docker.com/linux/ubuntu"
+ arch "amd64"
+ components ["stable"]
+ key "https://download.docker.com/linux/ubuntu/gpg"
+end
+
+apt_repository "grafana" do
+ action repository_actions["grafana"]
+ uri "https://packages.grafana.com/enterprise/deb"
+ distribution "stable"
+ components ["main"]
+ key "https://packages.grafana.com/gpg.key"
+end
+
+apt_repository "timescaledb" do
+ action repository_actions["timescaledb"]
+ uri "https://packagecloud.io/timescale/timescaledb/ubuntu"
+ components ["main"]
+ key "https://packagecloud.io/timescale/timescaledb/gpgkey"
+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 "644"
+ content auto_upgrades
+ end
+end
+
+template "/etc/apt/apt.conf.d/60chef" do
+ source "apt.conf.erb"
+ owner "root"
+ group "root"
+ mode "644"