roles/repositories/tasks/debian.yml

changeset 17
d0d9fdf1f9d3
child 21
92716e2eba34
new file mode 100644
--- /dev/null
+++ b/roles/repositories/tasks/debian.yml
@@ -0,0 +1,21 @@
+---
+
+- name: add python-apt
+  apt: name=python-apt state=installed
+
+# Not used here, but nice to have ready
+- name: add backports repo
+  apt_repository:
+    repo: "deb http://http.debian.net/debian {{ansible_distribution_release}}-backports main"
+  tags: repos
+
+- name: add pgdg repo
+  when: ansible_architecture in ['i386', 'x86_64']
+  apt_repository:
+    repo: "deb http://apt.postgresql.org/pub/repos/apt/ {{ansible_distribution_release}}-pgdg main"
+  tags: repos
+
+- name: apt upgrade
+  apt: upgrade=yes update_cache=yes cache_valid_time=3600 
+  tags: packages, upgrade
+

mercurial