Skip to content

Commit

Permalink
ansible-lint warnings. use FQCN
Browse files Browse the repository at this point in the history
  • Loading branch information
pescobar authored and ansible@cerebro committed Jun 9, 2022
1 parent 5da286a commit a831618
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions handlers/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,21 +7,21 @@
state: restarted

- name: restart slurmdbd service
service:
ansible.builtin.service:
name: slurmdbd
state: restarted
when: "slurm_dbd_host in inventory_hostname"

- name: restart slurmctld service
listen: restart slurm services
service:
ansible.builtin.service:
name: slurmctld
state: restarted
when: "slurm_master_host in inventory_hostname"

- name: restart slurmd service
listen: restart slurm services
service:
ansible.builtin.service:
name: slurmd
state: restarted
when: "slurm_workers_group in group_names"

0 comments on commit a831618

Please sign in to comment.