Mon, 22 Oct 2018 20:54:07 -0500
use https redirector now
17 | 1 | --- |
2 | ||
55 | 3 | - name: add ansible/apt dependencies |
4 | apt: name={{item}} state=installed | |
5 | with_items: | |
84
fdaa84bcac9c
add apt-transport-https just in case
Meredith Howard <mhoward@roomag.org>
parents:
56
diff
changeset
|
6 | - apt-transport-https |
56 | 7 | - aptitude |
55 | 8 | - python-apt |
17 | 9 | |
32
70eb0f5478d8
break out settings for stable and testing
Meredith Howard <mhoward@roomag.org>
parents:
21
diff
changeset
|
10 | - include: debian-stable.yml |
70eb0f5478d8
break out settings for stable and testing
Meredith Howard <mhoward@roomag.org>
parents:
21
diff
changeset
|
11 | when: ansible_distribution_release != 'NA' |
17 | 12 | tags: repos |
13 | ||
32
70eb0f5478d8
break out settings for stable and testing
Meredith Howard <mhoward@roomag.org>
parents:
21
diff
changeset
|
14 | - include: debian-testing.yml |
70eb0f5478d8
break out settings for stable and testing
Meredith Howard <mhoward@roomag.org>
parents:
21
diff
changeset
|
15 | when: ansible_distribution_release == 'NA' |
17 | 16 | tags: repos |
17 | ||
18 | - name: apt upgrade | |
19 | apt: upgrade=yes update_cache=yes cache_valid_time=3600 | |
20 | tags: packages, upgrade |