summaryrefslogtreecommitdiff
path: root/roles/apt-repo/helsinki/tasks/main.yml
blob: 3f20640c2e07e49adf55418ee39e695b025191bf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
- name: add repository key
  copy:
    src: repo.gpg
    dest: /etc/apt/trusted.gpg.d/helsinki.gpg
  register: apt_repo_helsinki_key

- name: add repository entry
  copy:
    content: |
      deb http://build.helsinki.at/ {{ ansible_distribution_release }} main
    dest: /etc/apt/sources.list.d/helsinki.list
  register: apt_repo_helsinki_sources

- name: update apt cache
  when: apt_repo_helsinki_key is changed or
        apt_repo_helsinki_sources is changed
  command: apt-get update
  args:
    warn: false