2017-07-08 13:38:13 +02:00
|
|
|
---
|
|
|
|
|
2017-07-15 14:28:23 +02:00
|
|
|
- name: apt | install pulseaudio and pavucontrol
|
2017-07-08 13:38:13 +02:00
|
|
|
apt:
|
|
|
|
name: '{{ item }}'
|
|
|
|
state: present
|
|
|
|
install_recommends: no
|
|
|
|
with_items:
|
|
|
|
- pulseaudio
|
|
|
|
- pavucontrol
|
|
|
|
|
2017-07-15 14:28:23 +02:00
|
|
|
- name: create /etc/asound.conf with pulseaudio as default device
|
2017-07-08 13:38:13 +02:00
|
|
|
template:
|
|
|
|
src: templates/alsa/asound.conf.j2
|
|
|
|
dest: /etc/asound.conf
|