23 lines
696 B
YAML
23 lines
696 B
YAML
# -*- coding: utf-8 -*-
|
|
# vim: ft=yaml
|
|
---
|
|
|
|
repo_openhab2:
|
|
pkgrepo.managed:
|
|
#- name: deb https://dl.bintray.com/openhab/apt-repo2 stable main
|
|
- name: deb https://openhab.jfrog.io/openhab/openhab-linuxpkg testing main
|
|
- file: /etc/apt/sources.list.d/openhab2.list
|
|
- key_url: 'https://bintray.com/user/downloadSubjectPublicKey?username=openhab'
|
|
- clean_file: False
|
|
|
|
etc-apt-apt.conf-noproxy:
|
|
file.managed:
|
|
- name: /etc/apt/apt.conf.d/99-openhab2-noproxy
|
|
- user: root
|
|
- group: root
|
|
- mode: 0755
|
|
- contents: |
|
|
#SALT managed
|
|
Acquire::http::proxy::dl.bintray.com "DIRECT";
|
|
Acquire::http::proxy::openhab.jfrog.io "DIRECT";
|
|
|