-
Notifications
You must be signed in to change notification settings - Fork 5
Configure Secure Boot Setting AL2 #27
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
739a7eb
configure secure boot al2
10e76cd
used vars in configure_secure_boot_al2.yaml
prince03batra d4c4a0d
updated main.yml
prince03batra 79def0e
used systemd module in handler
prince03batra 7ecc19d
Merge branch 'v2.0.0' into configure_secure_boot_al2
oo4abhishek File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,3 @@ | ||
| --- | ||
| - name: Amazon Linux 2 | Configure secure boot setting | ||
| include_tasks: configure_secure_boot_al2.yaml |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| --- | ||
|
|
||
| - name: "1.3.1 Ensure authentication required for single user mode (rescue & emergency)" | ||
| ansible.builtin.lineinfile: | ||
| path: "/usr/lib/systemd/system/{{ item }}" | ||
| regexp: '^ExecStart=' | ||
| line: 'ExecStart=-/bin/sh -c "/usr/sbin/sulogin; /usr/bin/systemctl --fail --no-block default"' | ||
| backup: yes | ||
| loop: | ||
| - rescue.service | ||
| - emergency.service | ||
| notify: Reload systemd | ||
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,16 +1,18 @@ | ||
| --- | ||
| - name: Include CIS Stage Specific vars | ||
| include_vars: cis-{{ cis_Stage }}.yaml | ||
|
|
||
| - name: Debian realted Specification | ||
| include_tasks: configure_Debian.yaml | ||
| - name: Ubuntu related Specification | ||
| include_tasks: ubuntu.yaml | ||
|
||
| when: | ||
| ansible_os_family == 'Debian' | ||
|
|
||
| - name: Centos realted Specification | ||
| include_tasks: configure_RedHat.yaml | ||
| - name: CentOS related Specification | ||
| include_tasks: centos.yaml | ||
| when: | ||
| ansible_os_family == 'RedHat' and ansible_distribution != 'Amazon' | ||
|
|
||
| - name: Amazon Linux 2 related Specification | ||
prince03batra marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| include_tasks: amazon_linux.yaml | ||
| when: | ||
| ansible_os_family == 'RedHat' | ||
| ansible_distribution == 'Amazon' | ||
|
|
||
| # - name: Special purpose services | ||
| # include_tasks: services.yaml | ||
|
|
||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use ansible module instead of command