fix: Use hiera auto data binding for base::packages::shells

This commit is contained in:
christiangoeschel 2025-03-27 12:12:43 -04:00
parent 93d03fa4bd
commit 1d12ccfc96
5 changed files with 28 additions and 8 deletions

9
data/common.yaml Normal file
View File

@ -0,0 +1,9 @@
lookup_options:
base::packages::shells:
merge: unique
base::packages::shells::shells:
- bash
- zsh
- ksh
- fish

View File

@ -5,11 +5,9 @@ defaults:
# file (this file)
# When specifying a datadir, make sure the directory exists.
# See https://puppet.com/docs/puppet/latest/environments_about.html for further details on environments.
# datadir: data
# data_hash: yaml_data
datadir: data
data_hash: yaml_data
hierarchy:
- name: "Per-node data (yaml version)"
path: "nodes/%{::trusted.certname}.yaml"
- name: "Other YAML hierarchy levels"
paths:
- "common.yaml"
- name: "Global Base Configuration"
paths: "common.yaml"

View File

@ -1,4 +1,5 @@
class base inherits base::params {
include base::users
include base::dummy
include base::packages
}

View File

@ -0,0 +1,12 @@
class base::packages {
include base::packages::shells
}
class base::packages::shells {
$shells.each | String $value | {
package { "${value}":
ensure => installed,
name => "${value}",
}
}
}

View File

@ -9,7 +9,7 @@ class security::firewall::nftables {
name => 'nftables',
}
~> file { default: *=> $security::params::file_defaults;
"/etc/nftables.conf":
'/etc/nftables.conf':
ensure => present,
source => 'puppet:///modules/security/firewall/nftables/nftables.conf',
;