diff options
author | Jan Dittberner <jandd@cacert.org> | 2019-07-19 22:46:25 +0200 |
---|---|---|
committer | Jan Dittberner <jandd@cacert.org> | 2019-07-19 22:46:25 +0200 |
commit | c8e5ad2dee88cac4780f8e847195ab848e9b8ffe (patch) | |
tree | 345825e803f4452ec58ae1783b4d8583485266c8 | |
parent | 1a9f37adf8873bdcc1698395f12c18f580af6963 (diff) | |
download | cacert-puppet-c8e5ad2dee88cac4780f8e847195ab848e9b8ffe.tar.gz cacert-puppet-c8e5ad2dee88cac4780f8e847195ab848e9b8ffe.tar.xz cacert-puppet-c8e5ad2dee88cac4780f8e847195ab848e9b8ffe.zip |
Rename EPP templates to end with .epp
-rw-r--r-- | sitemodules/profiles/manifests/icinga2_master.pp | 10 | ||||
-rw-r--r-- | sitemodules/profiles/templates/icinga2_master/conf.d/api-users.conf.epp (renamed from sitemodules/profiles/templates/icinga2_master/conf.d/api-users.epp.conf) | 0 | ||||
-rw-r--r-- | sitemodules/profiles/templates/icinga2_master/constants.conf.epp (renamed from sitemodules/profiles/templates/icinga2_master/constants.epp.conf) | 0 | ||||
-rw-r--r-- | sitemodules/profiles/templates/icinga2_master/features-available/api.conf.epp (renamed from sitemodules/profiles/templates/icinga2_master/features-available/api.app.conf) | 0 | ||||
-rw-r--r-- | sitemodules/profiles/templates/icinga2_master/features-available/ido-pgsql.conf.epp (renamed from sitemodules/profiles/templates/icinga2_master/features-available/ido-pgsql.epp.conf) | 0 | ||||
-rw-r--r-- | sitemodules/profiles/templates/icinga2_master/zones.conf.epp (renamed from sitemodules/profiles/templates/icinga2_master/zones.epp.conf) | 0 |
6 files changed, 5 insertions, 5 deletions
diff --git a/sitemodules/profiles/manifests/icinga2_master.pp b/sitemodules/profiles/manifests/icinga2_master.pp index f12c1e5..2c13726 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.epp.conf', { + content => epp('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.epp.conf'), + content => epp('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.epp.conf', { + content => epp('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.epp.conf'), + content => epp('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.epp.conf', { + content => epp('icinga2_master/conf.d/api-users.conf.epp', { 'api_users' => $api_users }), owner => 'root', diff --git a/sitemodules/profiles/templates/icinga2_master/conf.d/api-users.epp.conf b/sitemodules/profiles/templates/icinga2_master/conf.d/api-users.conf.epp index d449939..d449939 100644 --- a/sitemodules/profiles/templates/icinga2_master/conf.d/api-users.epp.conf +++ b/sitemodules/profiles/templates/icinga2_master/conf.d/api-users.conf.epp diff --git a/sitemodules/profiles/templates/icinga2_master/constants.epp.conf b/sitemodules/profiles/templates/icinga2_master/constants.conf.epp index 0baa08c..0baa08c 100644 --- a/sitemodules/profiles/templates/icinga2_master/constants.epp.conf +++ b/sitemodules/profiles/templates/icinga2_master/constants.conf.epp diff --git a/sitemodules/profiles/templates/icinga2_master/features-available/api.app.conf b/sitemodules/profiles/templates/icinga2_master/features-available/api.conf.epp index 57dc0e9..57dc0e9 100644 --- a/sitemodules/profiles/templates/icinga2_master/features-available/api.app.conf +++ b/sitemodules/profiles/templates/icinga2_master/features-available/api.conf.epp diff --git a/sitemodules/profiles/templates/icinga2_master/features-available/ido-pgsql.epp.conf b/sitemodules/profiles/templates/icinga2_master/features-available/ido-pgsql.conf.epp index 8673f58..8673f58 100644 --- a/sitemodules/profiles/templates/icinga2_master/features-available/ido-pgsql.epp.conf +++ b/sitemodules/profiles/templates/icinga2_master/features-available/ido-pgsql.conf.epp diff --git a/sitemodules/profiles/templates/icinga2_master/zones.epp.conf b/sitemodules/profiles/templates/icinga2_master/zones.conf.epp index ac74bbe..ac74bbe 100644 --- a/sitemodules/profiles/templates/icinga2_master/zones.epp.conf +++ b/sitemodules/profiles/templates/icinga2_master/zones.conf.epp |