summaryrefslogtreecommitdiff
path: root/roles/apt-repo/kodi/tasks/main.yml
blob: 30bd07b599bba7dcc5393164644dd7475e1519eb (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/kodi.gpg
  register: apt_repo_kodi_key

- name: add repository entry
  copy:
    content: |
      deb http://ppa.launchpad.net/team-xbmc/ppa/ubuntu {{ ansible_distribution_release }} main
    dest: /etc/apt/sources.list.d/kodi.list
  register: apt_repo_kodi_sources

- name: update apt cache
  when: apt_repo_kodi_key is changed or
        apt_repo_kodi_sources is changed
  command: apt-get update
  args:
    warn: false