-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Fixes #150
- Loading branch information
1 parent
700a3cc
commit d847216
Showing
6 changed files
with
99 additions
and
3 deletions.
There are no files selected for viewing
This file contains 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 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,3 +1,6 @@ | ||
* Fri Jun 03 2022 Mike Riddle <[email protected]> - 3.2.3 | ||
- Updated reporting to account for escaping knockout prefixes | ||
|
||
* Fri May 20 2022 Trevor Vaughan <[email protected]> - 3.2.2 | ||
- Allow for escaping knockout prefixes in strings to preserve leading `--` | ||
entries | ||
|
This file contains 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 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 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
29 changes: 29 additions & 0 deletions
29
spec/fixtures/hieradata/escaped_knockout/SIMP/compliance_profiles/escaped_knockout.yaml
This file contains 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,29 @@ | ||
--- | ||
# Some very basic compliance checks designed for the tests | ||
# | ||
# These should all pass | ||
|
||
version: 2.0.0 | ||
|
||
compliance_markup::enforcement: | ||
- test_profile | ||
|
||
profiles: | ||
test_profile: | ||
controls: | ||
test_control: true | ||
|
||
controls: | ||
test_control: {} | ||
|
||
checks: | ||
oval:test4: | ||
type: puppet-class-parameter | ||
settings: | ||
parameter: test4::list1 | ||
value: | ||
- '\\-- not_a_knockout' | ||
controls: | ||
test_control: true | ||
identifiers: | ||
- 'ESC_KNOCKOUT' |