install signal

This commit is contained in:
Pim Kunis 2022-11-26 18:31:02 +01:00
parent 622e2c1b4e
commit d27c02f1d8

View file

@ -1,3 +1,14 @@
- name: Get Signal APT key
become: true
ansible.builtin.get_url:
url: https://updates.signal.org/desktop/apt/keys.asc
dest: /etc/apt/trusted.gpg.d/signal.asc
- name: Install Signal APT repository
become: true
ansible.builtin.apt_repository:
repo: "deb [arch=amd64 signed-by=/etc/apt/trusted.gpg.d/signal.asc] https://updates.signal.org/desktop/apt xenial main"
state: present
- name: Update repositories - name: Update repositories
become: true become: true
apt: apt:
@ -21,6 +32,7 @@
- libreoffice-impress - libreoffice-impress
- libreoffice-writer - libreoffice-writer
- gimp - gimp
- signal-desktop
# Erlang stuff: https://github.com/asdf-vm/asdf-erlang#before-asdf-install # Erlang stuff: https://github.com/asdf-vm/asdf-erlang#before-asdf-install
- build-essential - build-essential
- autoconf - autoconf