dotfiles/roles/yubikey/pam/tasks/install.yml
Matej Focko 6a732703f7
chore: move out yubikey roles
Signed-off-by: Matej Focko <me@mfocko.xyz>
2024-07-12 21:15:31 +02:00

18 lines
497 B
YAML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
- name: Install pam_yubico on Fedora/EPEL
ansible.builtin.package:
name: pam_yubico
state: present
when: ansible_distribution in [ "AlmaLinux", "CentOS", "Fedora" ]
- name: Enable PPA on Ubuntu
ansible.builtin.apt_repository:
repo: ppa:yubico/stable
state: present
when: ansible_distribution == "Ubuntu"
- name: Install libpam-yubico on Ubuntu
ansible.builtin.package:
name: libpam-yubico
state: present
when: ansible_distribution == "Ubuntu"