diff options
author | Jan Dittberner <jandd@cacert.org> | 2019-07-19 22:48:37 +0200 |
---|---|---|
committer | Jan Dittberner <jandd@cacert.org> | 2019-07-19 22:48:37 +0200 |
commit | 3d3b311ee24cc33b9ef01eef692d5558f45983e9 (patch) | |
tree | 637b8d2ff9c7b3b8d6dca6692b985f5cc4731c28 | |
parent | c8e5ad2dee88cac4780f8e847195ab848e9b8ffe (diff) | |
download | cacert-puppet-3d3b311ee24cc33b9ef01eef692d5558f45983e9.tar.gz cacert-puppet-3d3b311ee24cc33b9ef01eef692d5558f45983e9.tar.xz cacert-puppet-3d3b311ee24cc33b9ef01eef692d5558f45983e9.zip |
Add missing profiles/ module prefix
-rw-r--r-- | sitemodules/profiles/manifests/icinga2_master.pp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sitemodules/profiles/manifests/icinga2_master.pp b/sitemodules/profiles/manifests/icinga2_master.pp index 2c13726..171285d 100644 --- a/sitemodules/profiles/manifests/icinga2_master.pp +++ b/sitemodules/profiles/manifests/icinga2_master.pp @@ -118,7 +118,7 @@ class profiles::icinga2_master ( } file { '/etc/icinga2/constants.conf': ensure => file, - content => epp('icinga2_master/constants.conf.epp', { + content => epp('profiles/icinga2_master/constants.conf.epp', { 'ticket_salt' => $icinga2_ticket_salt }), owner => 'root', @@ -142,7 +142,7 @@ class profiles::icinga2_master ( } file { '/etc/icinga2/features-available/api.conf': ensure => file, - content => epp('icinga2_master/features-available/api.conf.epp'), + content => epp('profiles/icinga2_master/features-available/api.conf.epp'), owner => 'root', group => 'root', mode => '0644', @@ -158,7 +158,7 @@ class profiles::icinga2_master ( } file { '/etc/icinga2/features-available/ido-pgsql.conf': ensure => file, - content => epp('icinga2_master/features-available/ido-pgsql.conf.epp', { + content => epp('profiles/icinga2_master/features-available/ido-pgsql.conf.epp', { 'db_name' => $ido_database_name, 'db_user' => $ido_database_user, 'db_password' => $ido_database_password @@ -208,7 +208,7 @@ class profiles::icinga2_master ( } file { '/etc/icinga2/zones.conf': ensure => file, - content => epp('icinga2_master/zones.conf.epp'), + content => epp('profiles/icinga2_master/zones.conf.epp'), owner => 'root', group => 'root', mode => '0644', @@ -216,7 +216,7 @@ class profiles::icinga2_master ( } file { '/etc/icinga2/conf.d/api-users.conf': ensure => file, - content => epp('icinga2_master/conf.d/api-users.conf.epp', { + content => epp('profiles/icinga2_master/conf.d/api-users.conf.epp', { 'api_users' => $api_users }), owner => 'root', |