Files
ansible-automations/roles/setup/handlers/main.yml
2024-04-12 15:12:30 +02:00

19 lines
698 B
YAML

# ===================================================================================================
# ? ABOUT
# @author : Noah Knegt
# @email : personal@noahknegt.com
# @repo : https://git.noahknegt.com/noah.knegt/ansible-automations
# @createdOn : 27-02-2023
# @description : This file contains all the handlers for the base role.
# ===================================================================================================
---
- name: Update apt
ansible.builtin.apt:
update-cache: true
- name: Restart sshd
ansible.builtin.service:
name: "{{ openssh_service }}"
state: restarted