Skip to content

Commit

Permalink
(WIP) (profile::core::node_info) fwv
Browse files Browse the repository at this point in the history
  • Loading branch information
jhoblitt committed Mar 28, 2024
1 parent f7562ad commit 722dc6a
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 0 deletions.
1 change: 1 addition & 0 deletions site/profile/manifests/core/common.pp
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@
include profile::core::kernel
include profile::core::keytab
include profile::core::nm_dispatch
include profile::core::node_info
include profile::core::selinux
include profile::core::systemd
include rsyslog
Expand Down
22 changes: 22 additions & 0 deletions site/profile/manifests/core/node_info.pp
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# @summary
# This empty class exists solely as a vehicle for shipping enc data to puppetdb.
#
# Note that the facts hash does not contain enc parameters and they must be
# accessed as top scoped variables.
#
# @param site
# @param role
# @param cluster
# @param variant
# @param subvariant
#
# lint:ignore:top_scope_facts
class profile::core::node_info (
Optional[String[1]] $site = $::site,
Optional[String[1]] $role = $::role,
Optional[String[1]] $cluster = $::cluster,
Optional[String[1]] $variant = $::variant,
Optional[String[1]] $subvariant = $::subvariant,
) {
# lint:endignore
}

0 comments on commit 722dc6a

Please sign in to comment.