ansible/roles/sshd/tasks/archlinux.yml

11 lines
148 B
YAML
Raw Normal View History

2022-10-18 12:05:45 +02:00
---
- name: install openssh
pacman:
name: openssh
- name: enable sshd service
systemd:
name: sshd
enabled: true
state: started