We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This regex does not seem to be valid. When executed, it does not return the expected values.
redhat-enterprise-linux-7-stig-baseline/controls/V-71849.rb
Lines 19 to 21 in 4d1347c
for i in `rpm -Va | egrep '^.{1}M|^.{5}U|^.{6}G' | cut -d " " -f4,5`;do for j in `rpm -qf $i`;do rpm -ql $j --dump | cut -d " " -f1,5,6,7 | grep $i;done;done
Update the corresponding check based on the above command:
Lines 78 to 80 in 4d1347c
describe command("for i in `rpm -Va | egrep '^.{1}M|^.{5}U|^.{6}G' | cut -d " " -f4,5`;do for j in `rpm -qf $i`;do rpm -ql $j --dump | cut -d " " -f1,5,6,7 | grep $i;done;done | awk '{print $1}'").stdout.strip.split("\n") do it { should all(be_in rpm_verify_perms_except) } end
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
This regex does not seem to be valid. When executed, it does not return the expected values.
redhat-enterprise-linux-7-stig-baseline/controls/V-71849.rb
Lines 19 to 21 in 4d1347c
I have tested this instead and it appears to work as intended based on the control text:
Update the corresponding check based on the above command:
redhat-enterprise-linux-7-stig-baseline/controls/V-71849.rb
Lines 78 to 80 in 4d1347c
The text was updated successfully, but these errors were encountered: