All checks were successful
Ansible Playbook lint / ansible-lint (push) Successful in 18s
15 lines
338 B
YAML
15 lines
338 B
YAML
---
|
|
- name: Update grub
|
|
ansible.builtin.command: |
|
|
update-grub
|
|
changed_when: true
|
|
- name: Reboot
|
|
ansible.builtin.reboot:
|
|
- name: Systemd daemon-reload
|
|
ansible.builtin.systemd_service:
|
|
daemon_reload: true
|
|
- name: Restart judgehost
|
|
ansible.builtin.systemd_service:
|
|
name: domjudge-judgehost.target
|
|
state: restarted
|