summaryrefslogtreecommitdiff
path: root/roles/apt-repo/base/tasks/main.yml
blob: 0b127272ea65d6ecc842b1405fd39117c6a8e799 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
- name: install global sources.list
  template:
    src: "{{ ansible_lsb.id | default(ansible_distribution) }}.list.j2"
    dest: /etc/apt/sources.list
  register: apt_repo_base_sources

- name: update apt cache
  when: apt_repo_base_sources is changed
  command: apt-get update

- name: create keyring directory for external repos
  file:
    path: /etc/apt/keyrings
    state: directory

## aptitude is needed for package upgrade roles
- name: install aptitude
  apt:
    name: aptitude
    state: present

- name: get rid of ubuntu esm ads
  when:
  - ansible_distribution == "Ubuntu"
  file:
    path: /etc/apt/apt.conf.d/20apt-esm-hook.conf
    state: absent