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
Introduces the SSG_SCE_ENABLED variable (defaulting to false) to
enable/disable SCE content generation. Note that an empty metadata.json
will still be generated, but no SCE content will be generated.
Signed-off-by: Alexander Scheel <[email protected]>
Copy file name to clipboardexpand all lines: CMakeLists.txt
+1
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,7 @@ option(SSG_ANSIBLE_PLAYBOOKS_PER_RULE_ENABLED "If enabled, Ansible Playbooks for
52
52
option(SSG_BASH_SCRIPTS_ENABLED "If enabled, Bash remediation scripts for each profile will be built and installed."TRUE)
53
53
option(SSG_JINJA2_CACHE_ENABLED "If enabled, the jinja2 templating files will be cached into bytecode. Also see SSG_JINJA2_CACHE_DIR."TRUE)
54
54
option(SSG_BATS_TESTS_ENABLED "If enabled, bats will be used to run unit-tests of bash remediations."TRUE)
55
+
option(SSG_SCE_ENABLED "If enabled, additional SCE audit content will be enabled alongside OVAL-based auditing."FALSE)
55
56
set(SSG_JINJA2_CACHE_DIR "${CMAKE_BINARY_DIR}/jinja2_cache"CACHEPATH"Where the jinja2 cached bytecode should be stored. This speeds up builds at the expense of disk space. You can use one location for multiple SSG builds for performance improvements.")
56
57
57
58
# SSG_PRODUCT_DEFAULT modifies the behavior of all other options. Products
0 commit comments