9 lines
274 B
YAML
9 lines
274 B
YAML
---
|
|
# Part of role: nvidia
|
|
# Called by: ansible/playbooks/setup-gpu-node.yaml
|
|
# Description: Restarts Docker after nvidia-container-toolkit runtime configuration.
|
|
- name: restart docker
|
|
ansible.builtin.systemd:
|
|
name: docker
|
|
state: restarted
|
|
daemon_reload: true |