Files
Yi-Ting Shih 935ae15ef3
All checks were successful
Ansible Playbook lint / ansible-lint (push) Successful in 18s
Refactor(judgehost): add kotlin support
2025-04-10 03:04:46 +08:00

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