14 lines
375 B
YAML
Executable file
14 lines
375 B
YAML
Executable file
---
|
|
# Handler to handle common notifications. Handlers are called by other plays.
|
|
# See http://docs.ansible.com/playbooks_intro.html for more information about handlers.
|
|
|
|
- name: Restart ntp
|
|
ansible.builtin.service:
|
|
name: ntp
|
|
state: restarted
|
|
become: true
|
|
# - name: Restart ssh
|
|
# ansible.builtin.service:
|
|
# name: ssh
|
|
# state: restarted
|
|
# become: true
|