mirror of
https://github.com/phfroidmont/self-hosting.git
synced 2025-12-25 05:36:59 +01:00
15 lines
205 B
YAML
15 lines
205 B
YAML
|
|
---
|
||
|
|
- name: restart tinc
|
||
|
|
systemd:
|
||
|
|
name: "{{ item }}"
|
||
|
|
state: restarted
|
||
|
|
with_items:
|
||
|
|
- tinc
|
||
|
|
|
||
|
|
- name: reload tinc
|
||
|
|
systemd:
|
||
|
|
name: "{{ item }}"
|
||
|
|
state: reloaded
|
||
|
|
with_items:
|
||
|
|
- tinc
|