summaryrefslogtreecommitdiffstats
path: root/roles/ssh/tasks/install-archlinux.yml
blob: 2b24a346894cfa3d49f2705225124157faa94a3d (plain) (blame)
1
2
3
4
5
6
7
---
- name: "Ensure sshd installed"
  become: true
  community.general.pacman:
    name: "{{ ssh_package_name }}"
    state: present
  tags: [required_for_boot]