chore: use FQCN for module name
This commit is contained in:
parent
ad41f3c768
commit
c11d156391
3 changed files with 17 additions and 11 deletions
|
@ -5,6 +5,10 @@ Which is based on [Keep A Changelog](http://keepachangelog.com/)
|
|||
|
||||
## Unreleased
|
||||
|
||||
### Changed
|
||||
|
||||
- chore: use FQCN for module name
|
||||
|
||||
## 1.0.1 - 2019-08-17
|
||||
|
||||
### Fixed
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
---
|
||||
- name: restart grafana
|
||||
systemd:
|
||||
ansible.builtin.service:
|
||||
name: grafana-server
|
||||
state: restarted
|
||||
|
|
|
@ -1,14 +1,15 @@
|
|||
---
|
||||
- name: install dependencies packages
|
||||
apt:
|
||||
name: apt-transport-https
|
||||
ansible.builtin.package:
|
||||
name:
|
||||
- apt-transport-https
|
||||
retries: 2
|
||||
register: result
|
||||
until: result is succeeded
|
||||
tags: grafana
|
||||
|
||||
- name: add repository key
|
||||
apt_key:
|
||||
ansible.builtin.apt_key:
|
||||
url: https://packages.grafana.com/gpg.key
|
||||
retries: 2
|
||||
register: result
|
||||
|
@ -16,20 +17,21 @@
|
|||
tags: grafana
|
||||
|
||||
- name: add repository
|
||||
apt_repository:
|
||||
ansible.builtin.apt_repository:
|
||||
repo: deb https://packages.grafana.com/oss/deb stable main
|
||||
tags: grafana
|
||||
|
||||
- name: install grafana package
|
||||
apt:
|
||||
name: grafana
|
||||
ansible.builtin.package:
|
||||
name:
|
||||
- grafana
|
||||
retries: 2
|
||||
register: result
|
||||
until: result is succeeded
|
||||
tags: grafana
|
||||
|
||||
- name: copy configuration file
|
||||
template:
|
||||
ansible.builtin.template:
|
||||
src: grafana.ini.j2
|
||||
dest: /etc/grafana/grafana.ini
|
||||
owner: root
|
||||
|
@ -39,7 +41,7 @@
|
|||
tags: grafana
|
||||
|
||||
- name: copy ldap configuration file
|
||||
template:
|
||||
ansible.builtin.template:
|
||||
src: ldap.toml.j2
|
||||
dest: /etc/grafana/ldap.toml
|
||||
owner: root
|
||||
|
@ -58,8 +60,8 @@
|
|||
tags: grafana
|
||||
|
||||
- name: enable and start service
|
||||
systemd:
|
||||
ansible.builtin.service:
|
||||
name: grafana-server
|
||||
state: started
|
||||
enabled: yes
|
||||
enabled: true
|
||||
tags: grafana
|
||||
|
|
Loading…
Reference in a new issue