2
0
mirror of https://github.com/schnidrig/openhab-ansible synced 2026-01-12 00:48:46 +01:00
Files
openhab-ansible/roles/raspberry/tasks/packages.yml
Christian Schnidrig 7bccead600 upgrade to openhab 3
2021-03-01 08:50:51 +01:00

25 lines
575 B
YAML

---
- name: ensure packages are installed
apt:
pkg:
- apt-transport-https
- tmux
- python3-pip
- python3-requests
- python3-websocket
- ufw
- docker-compose
- python-docker
- socat
- tcpdump
update_cache: "{{apt_config.update_cache}}"
cache_valid_time: "{{apt_config.cache_valid_time}}"
- name: set to iptables to legacy
command: "update-alternatives --set iptables /usr/sbin/iptables-legacy"
- name: set to ip6tables to legacy
command: "update-alternatives --set ip6tables /usr/sbin/ip6tables-legacy"