4
0
Fork 0

consistent vars and names

Signed-off-by: Mark Bolwell <mark.bollyuk@gmail.com>
This commit is contained in:
Mark Bolwell 2023-06-07 09:24:32 +01:00
parent 82eedb0edf
commit 194925be2f
No known key found for this signature in database
GPG key ID: 1DE02A772D0908F9
3 changed files with 14 additions and 13 deletions

View file

@ -54,7 +54,7 @@
- name: "PRELIM | Setup crypto-policy"
block:
- name: "PRELIM | Install crypto-policies"
- name: "PRELIM | Install crypto-policies | pkgs present"
ansible.builtin.package:
name:
- crypto-policies
@ -65,16 +65,16 @@
ansible.builtin.shell: 'update-crypto-policies --show'
changed_when: false
check_mode: false
register: system_wide_crypto_policy
register: rhel9cis_system_wide_crypto_policy
- name: "PRELIM | Gather system-wide crypto-policy"
- name: "PRELIM | Gather system-wide crypto-policy | set fact system policy"
ansible.builtin.set_fact:
current_crypto_policy: "{{ system_wide_crypto_policy.stdout.split(':')[0] }}"
current_crypto_policy: "{{ rhel9cis_system_wide_crypto_policy.stdout.split(':')[0] }}"
- name: "PRELIM | Gather system-wide crypto-policy module"
- name: "PRELIM | Gather system-wide crypto-policy module | set fact system policy submodule"
ansible.builtin.set_fact:
current_crypto_module: "{{ system_wide_crypto_policy.stdout.split(':')[1] }}"
when: "':' in system_wide_crypto_policy.stdout"
current_crypto_module: "{{ rhel9cis_system_wide_crypto_policy.stdout.split(':')[1] }}"
when: "':' in rhel9cis_system_wide_crypto_policy.stdout"
when:
- rhel9cis_rule_1_10
tags: