Compare commits
5 commits
chore/rena
...
main
Author | SHA1 | Date | |
---|---|---|---|
7d8d187e97 | |||
f5335e0f0c | |||
4ca89d7641 | |||
a79bfb5551 | |||
fb94b38a57 |
13 changed files with 37 additions and 15 deletions
|
@ -1,5 +1,8 @@
|
|||
certbot_email: "{{ vault_certbot_email }}"
|
||||
|
||||
cockpit_2fa: true
|
||||
cockpit_has_reverse_proxy: true
|
||||
|
||||
host_fqdn: "{{ vault_host_fqdn }}"
|
||||
|
||||
porkbun_apikey: "{{ vault_porkbun_apikey }}"
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -4,16 +4,16 @@
|
|||
name: "*"
|
||||
state: latest
|
||||
update_cache: true
|
||||
when: ansible_distribution in [ "Debian", "Ubuntu" ]
|
||||
when: ansible_facts.pkg_mgr == "apt"
|
||||
|
||||
- name: Upgrade all packages with ‹dnf›
|
||||
ansible.builtin.dnf:
|
||||
name: "*"
|
||||
state: latest
|
||||
when: ansible_distribution in [ "AlmaLinux", "CentOS", "Fedora" ]
|
||||
when: ansible_facts.pkg_mgr == "dnf"
|
||||
|
||||
- name: Upgrade all packages with ‹zypper›
|
||||
community.general.zypper:
|
||||
name: "*"
|
||||
state: latest
|
||||
when: "'openSUSE' in ansible_distribution"
|
||||
when: ansible_facts.pkg_mgr == "zypper"
|
||||
|
|
|
@ -3,3 +3,9 @@
|
|||
# reverse proxy (adjusts the origin, so that the Cockpit doesn't drop sessions,
|
||||
# and checks for SSL/TLS connections)
|
||||
cockpit_has_reverse_proxy: false
|
||||
|
||||
# Boolean variable that denotes whether to install dependencies for 2FA auth
|
||||
# to Cockpit (Google Authenticator and QR encoding utilities for enrolling the
|
||||
# OTP), also installs the rule to the ‹pam.d› so that the 2FA is required for
|
||||
# logging in to the Cockpit.
|
||||
cockpit_2fa: false
|
||||
|
|
|
@ -3,3 +3,11 @@
|
|||
ansible.builtin.package:
|
||||
name: cockpit
|
||||
state: present
|
||||
|
||||
- name: Install deps for 2FA in Cockpit
|
||||
ansible.builtin.package:
|
||||
name:
|
||||
- google-authenticator
|
||||
- qrencode-libs
|
||||
state: present
|
||||
when: cockpit_2fa
|
||||
|
|
|
@ -12,6 +12,16 @@
|
|||
group: root
|
||||
when: cockpit_has_reverse_proxy
|
||||
|
||||
- name: Require 2FA for logging into the Cockpit
|
||||
ansible.builtin.lineinfile:
|
||||
line: auth required pam_google_authenticator.so nullok
|
||||
path: /etc/pam.d/cockpit
|
||||
create: true
|
||||
mode: 0644
|
||||
owner: root
|
||||
group: root
|
||||
when: cockpit_2fa
|
||||
|
||||
- name: Enable cockpit
|
||||
ansible.builtin.service:
|
||||
name: "cockpit.socket"
|
||||
|
|
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,11 +1,4 @@
|
|||
---
|
||||
- name: Enable the Copr
|
||||
community.general.copr:
|
||||
name: varlad/helix
|
||||
state: enabled
|
||||
when: ansible_distribution not in ("AlmaLinux")
|
||||
become: true
|
||||
|
||||
- name: Install the Helix
|
||||
ansible.builtin.package:
|
||||
name: helix
|
||||
|
|
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'
|
||||
|
|
|
@ -55,4 +55,4 @@
|
|||
|
||||
- name: Set trusted CA
|
||||
ansible.builtin.include_tasks: trusted_ca.yml
|
||||
when: sshd_auth_trusted_ca
|
||||
when: ssh_server_auth_trusted_ca
|
||||
|
|
|
@ -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