Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix installation errors on debian #23

Open
wants to merge 12 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions defaults/main.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
---

grafana_enabled: true # The role is enabled
grafana_apt_repository: deb https://packagecloud.io/grafana/stable/debian/ jessie main
grafana_apt_key: https://packagecloud.io/gpg.key
grafana_apt_repository: deb https://packages.grafana.com/oss/deb stable main
grafana_apt_key: https://packages.grafana.com/gpg.key

grafana_version: 4.1.2-* # Set version (set to latest to install latest version)

Expand Down
2 changes: 1 addition & 1 deletion tasks/install.deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
apt: name="apt-transport-https"

- name: grafana-install | Add debian repository pt. 1
apt_key: url='{{grafana_apt_key}}' id=D59097AB
apt_key: url='{{grafana_apt_key}}' id=0D224E82057BCEE1321424B1CA6D481DBD044C76

- name: grafana-install | Add debian repository pt. 2
apt_repository: repo='{{grafana_apt_repository}}'
Expand Down