yavdr-ansible/roles/yavdr-network/tasks/main.yml

23 lines
711 B
YAML
Raw Normal View History

2017-02-19 13:56:47 +01:00
---
# this playbook sets up network services for a yaVDR installation
- name: apt |install packages for network services
2017-02-19 13:56:47 +01:00
apt:
name: '{{ item }}'
state: present
install_recommends: no
with_items:
- avahi-daemon
- avahi-utils
- biosdevname
- ethtool
- nfs-common
- vdr-addon-avahi-linker
- wakeonlan
2017-02-22 15:27:48 +01:00
# 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' %}'