mirror of
https://github.com/schnidrig/openhab-ansible
synced 2026-01-11 16:38:47 +01:00
23 lines
394 B
YAML
23 lines
394 B
YAML
---
|
|
|
|
- name: install openhab packages
|
|
apt:
|
|
pkg: "{{item}}"
|
|
update_cache: "{{apt_config.update_cache}}"
|
|
cache_valid_time: "{{apt_config.cache_valid_time}}"
|
|
with_items:
|
|
- "{{jdk}}"
|
|
- openhab2
|
|
- openhab2-addons
|
|
- openhab2-addons-legacy
|
|
- sysstat
|
|
- nginx
|
|
- python-passlib
|
|
- jython
|
|
- jython-doc
|
|
tags:
|
|
- packages
|
|
- openhab2
|
|
|
|
|