ansible/roles/howdy/tasks/main.yml

29 lines
537 B
YAML
Raw Normal View History

2021-11-16 15:23:42 +00:00
---
- name: Install rpmsphere-release
dnf:
2022-04-25 12:48:36 +01:00
name: https://github.com/rpmsphere/noarch/raw/master/r/rpmsphere-release-{{ ansible_distribution_major_version }}.noarch.rpm
2021-11-16 15:23:42 +00:00
state: present
disable_gpg_check: 1
become: yes
- name: Install dlib
dnf:
name:
- python3-dlib
- pam_python
state: present
become: yes
- name: Enable copr project howdy
community.general.copr:
name: luya/howdy
state: disabled
become: yes
- name: Install howdy
dnf:
name: howdy
state: present
become: yes