#2874 -- Only install audiowaveform on X86_64 Archs (Ansible).

This commit is contained in:
Buster "Silver Eagle" Neece 2020-05-25 03:31:51 -05:00
parent 954b4d7b6f
commit 0babf8745f
No known key found for this signature in database
GPG Key ID: 6D9E12FF03411F4E
1 changed files with 3 additions and 1 deletions

View File

@ -118,9 +118,11 @@
apt_repository:
repo: "ppa:chris-needham/ppa"
update_cache: yes
when: ansible_architecture == "x86_64"
- name: Install Audiowaveform
apt:
name: audiowaveform
state: latest
install_recommends: no
install_recommends: no
when: ansible_architecture == "x86_64"