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

Remove noauto for boot partition from test kickstart and ANSSI profiles #6570

Merged
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
4 changes: 3 additions & 1 deletion controls/anssi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,9 @@ controls:
- partition_for_boot
- mount_option_boot_nosuid
- mount_option_boot_noexec
- mount_option_boot_noauto
# The noauto option rule breaks checking of the other mount options
# Commented until rules for /boot mount_option handles this use case
# - mount_option_boot_noauto

# /opt nosuid, nodev (optional ro) Additional packages to the system. Read-only editing if not used
- partition_for_opt
Expand Down
2 changes: 1 addition & 1 deletion tests/kickstarts/test_suite.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ zerombr
clearpart --linux --initlabel

# Create primary system partitions (required for installs)
part /boot --fstype=xfs --size=512 --fsoptions="noauto,nosuid,noexec"
part /boot --fstype=xfs --size=512 --fsoptions="nosuid,noexec"
part pv.01 --grow --size=1

# Create a Logical Volume Management (LVM) group (optional)
Expand Down