summaryrefslogtreecommitdiff
path: root/roles/apt-repo/base/tasks/main.yml
blob: 668f64538b37ff48fdef5adbbd92d942b6223731 (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
29
30
31
32
33
34
35
36
---
- 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: remove new-style ubuntu apt source entries
  loop:
  - ubuntu.sources
  - ubuntu.sources.curtin.orig
  file:
    path: "/etc/apt/sources.list.d/{{ item }}"
    state: absent

- 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