summaryrefslogtreecommitdiff
path: root/roles/blackmagic-desktopvideo/tasks/main.yaml
blob: 401710f70e8a9c12a54898af7bdef4ab05cb6ee4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
- name: add repository key
  apt_key:
    data: "{{ lookup('file', 'repo.asc') }}"
    state: present

- name: add repository entry
  apt_repository:
    repo: deb https://{{ vault_build_spreadspace_blackmagic.username }}:{{ vault_build_spreadspace_blackmagic.password }}@build.spreadspace.org/ {{ ansible_distribution_release }} blackmagic
    state: present
    filename: blackmagic
    mode: 0600

- name: install blackmagic desktopvideo
  apt:
    name: desktopvideo
    state: present