33 lines
908 B
YAML
33 lines
908 B
YAML
---
|
|
# this playbook sets up network services for a yaVDR installation
|
|
#
|
|
- name: install network packages
|
|
apt:
|
|
name: '{{ item }}'
|
|
state: present
|
|
install_recommends: no
|
|
with_items:
|
|
- avahi-daemon
|
|
- avahi-utils
|
|
- biosdevname
|
|
- ethtool
|
|
- nfs-common
|
|
- vdr-addon-avahi-linker
|
|
- wakeonlan
|
|
|
|
- name: install and configure nfs-kernel-server
|
|
apt:
|
|
name: "{{ item }}"
|
|
state: present
|
|
install_recommends: no
|
|
with_items:
|
|
- nfs-kernel-server
|
|
when:
|
|
- '{{ install_nfs_server }}'
|
|
|
|
# Does this really work? We need a way to check if an interface supports WOL - Python Skript?
|
|
# - name: check WOL capabilities of network interfaces
|
|
# shell: 'ethtool {{ item }} | grep -Po "(?<=Supports\sWake-on:\s).*$"'
|
|
# register: wol
|
|
# with_items: '{% for interface in ansible_interfaces if interface != 'lo' and interface != 'bond0' %}'
|