Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make reboot handler gracefully shut down judgedaemon #148

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 20 additions & 1 deletion provision-contest/ansible/roles/judgedaemon/handlers/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,25 @@
- name: Update grub
command: update-grub

- name: Reboot
- name: Get judgedaemon PID
pids:
name: judgedaemon
register: judgedaemon_pids
listen: Reboot

- name: Signal judgedaemon to shut down
command: kill -SIGHUP "{{ item }}"
with_items: "{{ judgedaemon_pids.pids }}"
listen: Reboot

- name: Wait for judgedaemon to finish
wait_for:
path: "/proc/{{ item }}/status
state: absent
with_items: "{{ judgedaemon_pids.pids }}"
listen: Reboot

- name: Reboot finally
reboot:
search_paths: ['/lib/molly-guard', '/sbin']
listen: Reboot
Loading