Skip to content
New issue

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

updated hiera.yml facts to work with puppet 8 #110

Merged
merged 2 commits into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
* Wed Jan 17 2024 Richard Gardner <[email protected]> - 6.11.1
- Updated hiera.yaml facts to support puppet 8

* Mon Oct 23 2023 Steven Pritchard <[email protected]> - 6.11.0
- [puppetsync] Add EL9 support

Expand Down
6 changes: 3 additions & 3 deletions hiera.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ defaults:
data_hash: yaml_data
hierarchy:
- name: "fips_enabled OS + Release"
path: "fips_enabled/is_%{facts.fips_enabled}/os/%{facts.operatingsystem}-%{facts.operatingsystemmajrelease}.yaml"
path: "fips_enabled/is_%{facts.fips_enabled}/os/%{facts.os.name}-%{facts.os.release.major}.yaml"
- name: "fips_enabled"
path: "fips_enabled/is_%{facts.fips_enabled}.yaml"
- name: "OS + Release"
path: "os/%{facts.operatingsystem}-%{facts.operatingsystemmajrelease}.yaml"
path: "os/%{facts.os.name}-%{facts.os.release.major}.yaml"
- name: "OS"
path: "os/%{facts.operatingsystem}.yaml"
path: "os/%{facts.os.name}.yaml"
- name: "Kernel"
path: "os/%{facts.kernel}.yaml"
- name: "Common"
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "simp-aide",
"version": "6.11.0",
"version": "6.11.1",
"author": "SIMP Team",
"summary": "manages AIDE",
"license": "Apache-2.0",
Expand Down
Loading