2017-06-20 15:09:15 +02:00
|
|
|
---
|
|
|
|
# file: roles/dvd/tasks/main.yml
|
|
|
|
|
2017-11-13 09:46:51 +01:00
|
|
|
#- name: preconfigure libdvd-pkg
|
|
|
|
# shell: |
|
|
|
|
# echo 'libdvd-pkg libdvd-pkg/post-invoke_hook-install boolean true' | debconf-set-selections
|
|
|
|
# echo 'libdvd-pkg libdvd-pkg/build boolean true' | debconf-set-selections
|
2017-06-20 15:09:15 +02:00
|
|
|
|
|
|
|
- name: apt | install libdvd-pkg
|
|
|
|
apt:
|
|
|
|
name: '{{ item }}'
|
|
|
|
state: present
|
|
|
|
install_recommends: no
|
|
|
|
with_items:
|
2017-11-13 09:46:51 +01:00
|
|
|
- 'libdvd-pkg'
|
|
|
|
|
|
|
|
- name: configure package libdvd-pkg
|
|
|
|
debconf:
|
|
|
|
name: 'libdvd-pkg'
|
|
|
|
question: '{{ item }}'
|
|
|
|
vtype: boolean
|
|
|
|
value: true
|
|
|
|
with_items:
|
|
|
|
- 'libdvd-pkg/post-invoke_hook-install'
|
|
|
|
- 'libdvd-pkg/build boolean'
|
|
|
|
notify: ['Reconfigure unattended upgrades with dpkg']
|
2017-07-15 14:28:23 +02:00
|
|
|
|
|
|
|
- name: change udev rule to allow KODI to eject optical disks
|
|
|
|
shell: sed 's/--lock-media //' /lib/udev/rules.d/60-cdrom_id.rules > /etc/udev/rules.d/60-cdrom_id.rules
|
|
|
|
args:
|
|
|
|
creates: /etc/udev/rules.d/60-cdrom_id.rules
|