diff options
| author | 2022-03-15 00:27:26 +0000 | |
|---|---|---|
| committer | 2022-03-15 00:27:26 +0000 | |
| commit | 01a95a8994a3c3ef2fd6693084b70947ce0cec57 (patch) | |
| tree | 5cf31c47189592ef5c13f8a02dae206f5e1bcea3 /roles/prometheus | |
| parent | Allow HTTP traffic through the firewall (diff) | |
Capitalise all task names in roles
Makes all role names begin with a capital letter in Ansible roles
Diffstat (limited to 'roles/prometheus')
| -rw-r--r-- | roles/prometheus/tasks/main.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/roles/prometheus/tasks/main.yml b/roles/prometheus/tasks/main.yml index 08aff38..67fa12d 100644 --- a/roles/prometheus/tasks/main.yml +++ b/roles/prometheus/tasks/main.yml @@ -1,12 +1,12 @@ --- -- name: install prometheus +- name: Install prometheus package: name: prometheus state: present tags: - role::prometheus -- name: configure prometheus command line options +- name: Configure prometheus command line options lineinfile: path: /etc/default/prometheus regexp: ^ARGS.* @@ -18,7 +18,7 @@ notify: - restart the prometheus service -- name: configure prometheus +- name: Configure prometheus copy: content: | # Ansible managed |