feat: add Rocky to possible targets
Signed-off-by: Matej Focko <me@mfocko.xyz>
This commit is contained in:
parent
fa5339e1c1
commit
fb94b38a57
6 changed files with 6 additions and 4 deletions
|
@ -10,7 +10,7 @@
|
|||
|
||||
- role: os_el
|
||||
become: true
|
||||
when: ansible_distribution in [ "AlmaLinux", "CentOS" ]
|
||||
when: ansible_distribution in [ "AlmaLinux", "CentOS", "Rocky" ]
|
||||
|
||||
# Upgrade all packages and install the basic-bitch ones
|
||||
- role: base_system
|
||||
|
|
1
roles/editor_helix/tasks/install_Rocky.yml
Symbolic link
1
roles/editor_helix/tasks/install_Rocky.yml
Symbolic link
|
@ -0,0 +1 @@
|
|||
install_fedora-family.yml
|
1
roles/secrets_hcv/tasks/install_Rocky.yml
Symbolic link
1
roles/secrets_hcv/tasks/install_Rocky.yml
Symbolic link
|
@ -0,0 +1 @@
|
|||
install_el.yml
|
|
@ -1,6 +1,6 @@
|
|||
---
|
||||
- name: Install HC Vault via package manager
|
||||
when: ansible_distribution in [ "AlmaLinux", "CentOS", "Fedora", "Ubuntu"]
|
||||
when: ansible_distribution in [ "AlmaLinux", "CentOS", "Fedora", "Rocky", "Ubuntu"]
|
||||
tags: install
|
||||
block:
|
||||
- name: Enable repository
|
||||
|
|
|
@ -34,4 +34,4 @@
|
|||
name: yad
|
||||
state: present
|
||||
become: true
|
||||
when: 'ansible_distribution not in [ "AlmaLinux" ] and "openSUSE" not in ansible_distribution'
|
||||
when: 'ansible_distribution not in [ "AlmaLinux", "Rocky" ] and "openSUSE" not in ansible_distribution'
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
ansible.builtin.package:
|
||||
name: pam_yubico
|
||||
state: present
|
||||
when: ansible_distribution in [ "AlmaLinux", "CentOS", "Fedora" ]
|
||||
when: ansible_distribution in [ "AlmaLinux", "CentOS", "Fedora", "Rocky" ]
|
||||
|
||||
- name: Enable PPA on Ubuntu
|
||||
ansible.builtin.apt_repository:
|
||||
|
|
Loading…
Reference in a new issue