Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix role metadata and disable Rule 1.1.1.6 #17

Merged
merged 5 commits into from
Feb 23, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

Changes/Fixes/Additions/Removals addressed in Releases. Dates are in MM/DD/YYYY format.

## [3.1.0](https://github.com/darkwizard242/cis_ubuntu_2004/releases/tag/3.1.0) - 02/23/2022

### Fixed

- Rule 1.8.1 package name correction by @jodlajodla in <https://github.com/darkwizard242/cis_ubuntu_2004/pull/16>
- Fix role metadata and disable Rule 1.1.1.6 by @darkwizard242 in <https://github.com/darkwizard242/cis_ubuntu_2004/pull/17>

## [3.0.0](https://github.com/darkwizard242/cis_ubuntu_2004/releases/tag/3.0.0) - 01/03/2022

### Fixed
Expand Down
4 changes: 2 additions & 2 deletions meta/main.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
---
galaxy_info:
role_name: cis_ubuntu_2004
author: Ali Muhammad
author: darkwizard242
description: Role to apply CIS Benchmark for Ubuntu Linux 20.04 LTS.
company: none
license: MIT
min_ansible_version: 2.7
min_ansible_version: 2.10

platforms:
- name: Ubuntu
Expand Down
3 changes: 3 additions & 0 deletions molecule/default/converge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
# To skip any long running tasks not required during development
skip_for_development: true

# DISABLE 1.1.1.6 as it results with error | modprobe: FATAL: Module squashfs is builtin.
ubuntu_2004_cis_section1_rule_1_1_1_6: false

# To set ipv6 as required .... To use ufw is as the firewall
ubuntu_2004_cis_require_ipv6: true
ubuntu_2004_cis_firewall: ufw
Expand Down
3 changes: 3 additions & 0 deletions playbook-examples/playbook_with_custom_firewall_changes.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
vars:
ansible_python_interpreter: /usr/bin/python3

# DISABLE 1.1.1.6 as it results with error | modprobe: FATAL: Module squashfs is builtin.
ubuntu_2004_cis_section1_rule_1_1_1_6: false

# To set ipv6 as required .... To use ufw is as the firewall
ubuntu_2004_cis_firewall: ufw

Expand Down
3 changes: 3 additions & 0 deletions playbook-examples/playbook_with_defaults.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,6 @@
- cis_ubuntu_2004
vars:
ansible_python_interpreter: /usr/bin/python3

# DISABLE 1.1.1.6 as it results with error | modprobe: FATAL: Module squashfs is builtin.
ubuntu_2004_cis_section1_rule_1_1_1_6: false
3 changes: 3 additions & 0 deletions playbook-examples/playbook_with_ipv6.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@
vars:
ansible_python_interpreter: /usr/bin/python3
ubuntu_2004_cis_require_ipv6: true

# DISABLE 1.1.1.6 as it results with error | modprobe: FATAL: Module squashfs is builtin.
ubuntu_2004_cis_section1_rule_1_1_1_6: false
3 changes: 3 additions & 0 deletions playbook-examples/playbook_with_ufw.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,6 @@
vars:
ansible_python_interpreter: /usr/bin/python3
ubuntu_2004_cis_firewall: ufw

# DISABLE 1.1.1.6 as it results with error | modprobe: FATAL: Module squashfs is builtin.
ubuntu_2004_cis_section1_rule_1_1_1_6: false