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