11 lines
312 B
YAML
11 lines
312 B
YAML
|
|
---
|
||
|
|
- name: Install grafana via homebrew
|
||
|
|
community.general.homebrew:
|
||
|
|
name: grafana
|
||
|
|
state: present
|
||
|
|
|
||
|
|
- name: Ensure grafana service is started
|
||
|
|
ansible.builtin.command: brew services start grafana
|
||
|
|
register: brew_start
|
||
|
|
changed_when: "'Successfully started' in brew_start.stdout"
|
||
|
|
failed_when: false
|