updating hiera to enable role data to true for module deployment

This commit is contained in:
christopher.lawrence 2020-02-06 09:21:17 +00:00
parent c2faa35b17
commit 82d7106962
3 changed files with 6 additions and 4 deletions

View File

@ -5,9 +5,12 @@ profile::base::resolv::nameservers:
- '8.8.8.8'
- '127.0.0.1'
profile::base::resolv::domainname: home
profile::base::selinux::mode: true
profile::base::selinux::mode: permissive
profile::base::time: true
profile::base::time::ntp_servers:
- 0.uk.pool.ntp.org
- 1.uk.pool.ntp.org
- 2.uk.pool.ntp.org
profile::base::ssh: true
profile::base::motd: true

View File

@ -1,4 +1,3 @@
---
profile::puppetserver::authority: true
#profile::puppetserver::authority::jwt_secret: "koHc5pzVSVpJhijthem3zT8WXN8="
profile::puppetserver::authority::validity: 7200

View File

@ -3,9 +3,9 @@ class profile::base (
Boolean $time = false,
Boolean $repos = false,
Boolean $resolv = false,
Boolean $ssh = true,
Boolean $selinux = true,
Boolean $motd = true,
Boolean $ssh = false,
Boolean $selinux = false,
Boolean $motd = false,
) {
if $motd {
class { '::motd': }