merge

Sat, 22 Jun 2019 04:26:10 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Sat, 22 Jun 2019 04:26:10 -0400
changeset 86
939e12400bd5
parent 81
47d7ef3be553 (current diff)
parent 85
25111b904b2c (diff)
child 87
13c6ba506f26

merge

--- a/roles/repositories/tasks/debian-stable.yml
+++ b/roles/repositories/tasks/debian-stable.yml
@@ -1,11 +1,13 @@
 ---
 - name: "add backports repo"
   apt_repository:
-    repo: "deb http://http.debian.net/debian {{ansible_distribution_release}}-backports main"
+    filename: "debian-backports"
+    repo: "deb https://deb.debian.org/debian {{ansible_distribution_release}}-backports main"
     update_cache: false
 
 - name: "add pgdg repo"
   apt_repository:
+    filename: "pgdg"
     repo: "deb http://apt.postgresql.org/pub/repos/apt/ {{ansible_distribution_release}}-pgdg main"
     update_cache: false
   when: ansible_architecture in ["i386", "x86_64"]
--- a/roles/repositories/tasks/debian-testing.yml
+++ b/roles/repositories/tasks/debian-testing.yml
@@ -9,4 +9,5 @@
 
 - name: add unstable repo
   apt_repository:
-    repo: "deb http://http.debian.net/debian unstable main"
+    filename: "debian-unstable"
+    repo: "deb https://deb.debian.org/debian unstable main"
--- a/roles/repositories/tasks/debian.yml
+++ b/roles/repositories/tasks/debian.yml
@@ -3,6 +3,7 @@
 - name: add ansible/apt dependencies
   apt: name={{item}} state=installed
   with_items:
+    - apt-transport-https
     - aptitude
     - python-apt
 

mercurial