From 8280d3d9467b910f8de9642a0f742dd4c2ee84ef Mon Sep 17 00:00:00 2001 From: Bill Glick Date: Fri, 12 Mar 2021 15:34:09 -0600 Subject: [PATCH] ASDPLNG-89: Review puppet-profile_puppet_master --- Puppetfile | 2 +- site-modules/role/manifests/puppet_master.pp | 8 ++++++++ 2 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 site-modules/role/manifests/puppet_master.pp diff --git a/Puppetfile b/Puppetfile index 8144b29..92e1663 100644 --- a/Puppetfile +++ b/Puppetfile @@ -20,7 +20,7 @@ mod 'ncsa/profile_dns_cache', tag: 'v1.0.0', git: 'https://github.com/ncsa/puppe mod 'ncsa/profile_monitoring', tag: 'v0.1.3', git: 'https://github.com/ncsa/puppet-profile_monitoring' mod 'ncsa/profile_motd', tag: 'v0.1.0', git: 'https://github.com/ncsa/puppet-profile_motd' mod 'ncsa/profile_pam_access', tag: 'v0.0.4', git: 'https://github.com/ncsa/puppet-profile_pam_access' -# mod 'ncsa/profile_puppet_master', tag: 'v0.1.0', git: 'https://github.com/ncsa/puppet-profile_puppet_master' +mod 'ncsa/profile_puppet_master', tag: 'v0.1.1', git: 'https://github.com/ncsa/puppet-profile_puppet_master' mod 'ncsa/profile_sudo', tag: 'v0.1.1', git: 'https://github.com/ncsa/puppet-profile_sudo' mod 'ncsa/profile_system_auth', tag: 'v0.1.0', git: 'https://github.com/ncsa/puppet-profile_system_auth' mod 'ncsa/profile_timezone', tag: 'v0.2.1', git: 'https://github.com/ncsa/puppet-profile_timezone' diff --git a/site-modules/role/manifests/puppet_master.pp b/site-modules/role/manifests/puppet_master.pp new file mode 100644 index 0000000..7c10a89 --- /dev/null +++ b/site-modules/role/manifests/puppet_master.pp @@ -0,0 +1,8 @@ +# @summary Puppet_master role + +class role::puppet_master { + + include ::profile::base + include ::profile_puppet_master + +}