You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the Issue
The permission of the file /etc/grub.d/00_user is incorrect, this causes the configuration of grub not to be updated with the content of this file when the command "update-grub" is issued
Expected Behavior
# ls -l /etc/grub.d/00_user
-rwxr-xr-x 1 root root 490 Jan 29 18:28 00_user
Actual Behavior
# ls -l /etc/grub.d/00_user
-rw-r----- 1 root root 490 Jan 29 18:28 00_user
or
-rw-r--r-- 1 root root 490 Jan 29 18:28 00_user
# Depending on umask
Control(s) Affected
1.4.1
Environment (please complete the following information):
branch being used: devel
Ansible Version: 2.17.7
Host Python Version: 3.12.3
Ansible Server Python Version: 3.10.12
Additional Details: N/A
Additional Notes
When exact values are required, it's better to use octal notation (0640) instead of symbolic (go-w).
Symbolic notation modifies existing permissions, while octal sets precise values.
Possible Solution
Change the file permission on task named 1.4.1 | PATCH | Ensure bootloader password is set to be '755' instead of 'go-w'
The text was updated successfully, but these errors were encountered:
Have you checked ReadtheDocs?: Yes
Describe the Issue
The permission of the file /etc/grub.d/00_user is incorrect, this causes the configuration of grub not to be updated with the content of this file when the command "update-grub" is issued
Expected Behavior
# ls -l /etc/grub.d/00_user -rwxr-xr-x 1 root root 490 Jan 29 18:28 00_user
Actual Behavior
Control(s) Affected
Environment (please complete the following information):
Additional Notes
When exact values are required, it's better to use octal notation (0640) instead of symbolic (go-w).
Symbolic notation modifies existing permissions, while octal sets precise values.
Possible Solution
Change the file permission on task named
1.4.1 | PATCH | Ensure bootloader password is set
to be '755' instead of 'go-w'The text was updated successfully, but these errors were encountered: