install signal
This commit is contained in:
parent
622e2c1b4e
commit
d27c02f1d8
1 changed files with 12 additions and 0 deletions
|
@ -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
|
||||
become: true
|
||||
apt:
|
||||
|
@ -21,6 +32,7 @@
|
|||
- libreoffice-impress
|
||||
- libreoffice-writer
|
||||
- gimp
|
||||
- signal-desktop
|
||||
# Erlang stuff: https://github.com/asdf-vm/asdf-erlang#before-asdf-install
|
||||
- build-essential
|
||||
- autoconf
|
||||
|
|
Reference in a new issue