Skip to content

Commit

Permalink
Prep Cat Rev3
Browse files Browse the repository at this point in the history
  • Loading branch information
Allen Golbig committed Mar 17, 2021
1 parent 630fb89 commit 23d0a66
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 6 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,30 @@

This document provides a high-level view of the changes to the macOS Security Compliance Project.

== [Catalina, Revision 3] - 2021-03-18

* Rules
** Fixed Rules

* Baselines
** Added DISA-STIG

* Scripts
** generate_guidance
*** Bug fixes
*** Custom rules support added
*** Added ability to signed configuration profiles
*** Added plist generation for rules
*** Generates preferences files for compliance script
*** Compliance script enhancements
**** Exemption support
**** Modified plist behavior
**** Log rotation
*** Added Custom References
** yaml-to-oval
*** Bug fixes


== [Catalina, Revision 2] - 2020-11-10

* Rules
Expand Down
3 changes: 1 addition & 2 deletions README.adoc
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image::templates/images/mscp_banner.png[]
image::templates/images/mscp_banner_outline.png[]
// settings:
:idprefix:
:idseparator: -
Expand Down Expand Up @@ -50,7 +50,6 @@ Part 39 of the Federal Acquisition Regulations, section 39.101 paragraph (c) sta
|Joshua Glemza|National Aeronautics and Space Administration
|Elyse Anderson|National Aeronautics and Space Administration
|Gary Gapinski|National Aeronautics and Space Administration
|Paige Ramsey|Los Alamos National Laboratory
|===

== Changelog
Expand Down
4 changes: 2 additions & 2 deletions VERSION.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
os: "10.15"
version: "Catalina, Revision 2"
date: "2020-11-10"
version: "Catalina, Revision 3"
date: "2021-03-18"
4 changes: 2 additions & 2 deletions scripts/generate_guidance.py
Original file line number Diff line number Diff line change
Expand Up @@ -972,9 +972,9 @@ def get_rule_yaml(rule_file):
if file_name in names:
print(f"Custom settings found for rule: {rule_file}")
try:
override_path = glob.glob('../custom/rules/**/{}'.format(file_name, recursive=True))[0]
override_path = glob.glob('../custom/rules/**/{}'.format(file_name), recursive=True)[0]
except IndexError:
override_path = glob.glob('../custom/rules/{}'.format(file_name, recursive=True))[0]
override_path = glob.glob('../custom/rules/{}'.format(file_name), recursive=True)[0]
with open(override_path) as r:
rule_yaml = yaml.load(r, Loader=yaml.SafeLoader)
else:
Expand Down
Binary file added templates/images/mscp_banner_outline.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 23d0a66

Please sign in to comment.