ansible-bootstrap-rocky9/roles/openssh/handlers/main.yml
2026-05-15 00:12:37 +03:00

10 lines
210 B
YAML

---
# Copyright (c) 2025 Gravitino LLC
# MIT License
- name: restart openssh
ansible.builtin.systemd:
name: "{{ 'sshd' if ansible_os_family == 'RedHat' else 'ssh' }}"
state: restarted
become: true