9 lines
176 B
YAML
9 lines
176 B
YAML
|
#!/usr/bin/ansible-playbook
|
||
|
# vim:ft=ansible:
|
||
|
---
|
||
|
- name: "restart tes3mp {{ tes3mp.name }}"
|
||
|
systemd:
|
||
|
name: "tes3mp@{{ tes3mp.name }}"
|
||
|
state: restarted
|
||
|
become: yes
|