mirror of
https://github.com/schnidrig/openhab-ansible
synced 2026-01-12 08:58:46 +01:00
19 lines
370 B
YAML
19 lines
370 B
YAML
---
|
|
|
|
- name: install ppa key
|
|
apt_key: url=https://bintray.com/user/downloadSubjectPublicKey?username=openhab state=present
|
|
tags:
|
|
- repo
|
|
- openhab
|
|
|
|
- name: install openhab repo
|
|
apt_repository:
|
|
repo='deb http://dl.bintray.com/openhab/apt-repo stable main'
|
|
state=present
|
|
update_cache=yes
|
|
filename=openhab
|
|
tags:
|
|
- repo
|
|
- openhab
|
|
|