Skip to content

Commit

Permalink
Merge pull request #5 from ansible-lockdown/changelog
Browse files Browse the repository at this point in the history
Added conditional for UEFI check and updated changelog
  • Loading branch information
uk-bolly authored Aug 30, 2023
2 parents fad7186 + 3b48077 commit cab1f4c
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# Amazon 2023 CIS - 26th June 2023

## Initial release
## 0.91

- issue #2 thanks to @babinskiy
- moved to self hosted action after forking from arillso

## Initial release 0.9
7 changes: 7 additions & 0 deletions tasks/prelim.yml
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@
ansible.builtin.set_fact:
grub2_path: /etc/grub2-efi.cfg
when: amzn2023cis_efi_boot.stat.exists
when:
- amzn2023cis_rule_1_4_1
tags:
- always

Expand Down Expand Up @@ -262,3 +264,8 @@
manager: auto
tags:
- always

- name: "PRELIM | Set audit to not run if amazon 2023"
ansible.builtin.set_fact:
run_audit: false
when: ansible_distribution_major_version == '2023'

0 comments on commit cab1f4c

Please sign in to comment.