roles/repositories/tasks/debian-stable.yml

Sat, 22 Jun 2019 04:23:29 -0400

author
Meredith Howard <mhoward@roomag.org>
date
Sat, 22 Jun 2019 04:23:29 -0400
changeset 81
47d7ef3be553
parent 75
082685c4bd2a
child 82
ae08d6315368
permissions
-rw-r--r--

Forget lightdm for now

32
70eb0f5478d8 break out settings for stable and testing
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
1 ---
75
082685c4bd2a actually remove defunct repositories
Meredith Howard <mhoward@roomag.org>
parents: 32
diff changeset
2 - name: "add backports repo"
32
70eb0f5478d8 break out settings for stable and testing
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
3 apt_repository:
70eb0f5478d8 break out settings for stable and testing
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
4 repo: "deb http://http.debian.net/debian {{ansible_distribution_release}}-backports main"
75
082685c4bd2a actually remove defunct repositories
Meredith Howard <mhoward@roomag.org>
parents: 32
diff changeset
5 update_cache: false
32
70eb0f5478d8 break out settings for stable and testing
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
6
75
082685c4bd2a actually remove defunct repositories
Meredith Howard <mhoward@roomag.org>
parents: 32
diff changeset
7 - name: "add pgdg repo"
32
70eb0f5478d8 break out settings for stable and testing
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
8 apt_repository:
70eb0f5478d8 break out settings for stable and testing
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
9 repo: "deb http://apt.postgresql.org/pub/repos/apt/ {{ansible_distribution_release}}-pgdg main"
75
082685c4bd2a actually remove defunct repositories
Meredith Howard <mhoward@roomag.org>
parents: 32
diff changeset
10 update_cache: false
32
70eb0f5478d8 break out settings for stable and testing
Meredith Howard <mhoward@roomag.org>
parents:
diff changeset
11 when: ansible_architecture in ["i386", "x86_64"]
75
082685c4bd2a actually remove defunct repositories
Meredith Howard <mhoward@roomag.org>
parents: 32
diff changeset
12
082685c4bd2a actually remove defunct repositories
Meredith Howard <mhoward@roomag.org>
parents: 32
diff changeset
13 - name: "remove defunct repositories"
082685c4bd2a actually remove defunct repositories
Meredith Howard <mhoward@roomag.org>
parents: 32
diff changeset
14 apt_repository:
082685c4bd2a actually remove defunct repositories
Meredith Howard <mhoward@roomag.org>
parents: 32
diff changeset
15 state: absent
082685c4bd2a actually remove defunct repositories
Meredith Howard <mhoward@roomag.org>
parents: 32
diff changeset
16 repo: "deb http://mozilla.debian.net/ {{ansible_distribution_release}}-backports firefox-release"
082685c4bd2a actually remove defunct repositories
Meredith Howard <mhoward@roomag.org>
parents: 32
diff changeset
17 update_cache: false

mercurial