Skip to content

Commit

Permalink
Merge pull request #2072 from evgenyz/add-subshell-for-bash-fix-script
Browse files Browse the repository at this point in the history
Wrap Bash snippets in a subshell when generating a fix script
  • Loading branch information
jan-cerny authored Feb 1, 2024
2 parents 6506089 + cb9bccb commit 192f545
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/XCCDF_POLICY/xccdf_policy_remediate.c
Original file line number Diff line number Diff line change
Expand Up @@ -633,7 +633,7 @@ static int _write_fix_header_to_fd(const char *sys, int output_fd, struct xccdf_
"###############################################################################\n"
"# BEGIN fix (%i / %i) for '%s'\n"
"###############################################################################\n"
"(>&2 echo \"Remediating rule %i/%i: '%s'\")\n",
"(>&2 echo \"Remediating rule %i/%i: '%s'\"); (\n",
current, total, xccdf_rule_get_id(rule), current, total, xccdf_rule_get_id(rule));
return _write_text_to_fd_and_free(output_fd, fix_header);
} else {
Expand All @@ -644,7 +644,7 @@ static int _write_fix_header_to_fd(const char *sys, int output_fd, struct xccdf_
static int _write_fix_footer_to_fd(const char *sys, int output_fd, struct xccdf_rule *rule)
{
if (oscap_streq(sys, "") || oscap_streq(sys, "urn:xccdf:fix:script:sh") || oscap_streq(sys, "urn:xccdf:fix:commands")) {
char *fix_footer = oscap_sprintf("\n# END fix for '%s'\n\n", xccdf_rule_get_id(rule));
char *fix_footer = oscap_sprintf("\n) # END fix for '%s'\n\n", xccdf_rule_get_id(rule));
return _write_text_to_fd_and_free(output_fd, fix_footer);
} else {
return 0;
Expand Down
2 changes: 1 addition & 1 deletion tests/API/XCCDF/fix/all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ function test_generate_fix {
# `tail -n +2` to skip the first line with progress reporting
local GENERATED_FIX RELEVANT_FIX_CONTENTS
GENERATED_FIX=$($OSCAP xccdf generate fix --result-id "$TESTRESULT_ID" "$INPUT")
RELEVANT_FIX_CONTENTS=$(grep -v -E "^([\t ]*|[\t ]*#.*)$" <<< "$GENERATED_FIX" | tail -n +2)
RELEVANT_FIX_CONTENTS=$(grep -v -E "^([\t ]*|[\t ]*#.*|\) #.*)$" <<< "$GENERATED_FIX" | tail -n +2)
if [ "$?" != "0" ]; then
return 1
fi
Expand Down

0 comments on commit 192f545

Please sign in to comment.