summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorvarac <varacanero@zeromail.org>2017-04-03 11:45:14 +0200
committervarac <varacanero@zeromail.org>2017-04-03 11:45:14 +0200
commit6ffee2d778992b783bd29a1ddeaab61baf6d47aa (patch)
tree021f4f028ea47808e8fd73aee7cfa65647f971c7
parentaa02571537af90ac73309e6e216c9417802548c3 (diff)
Adopt syntax of puppetlabs/concat module
-rw-r--r--manifests/config.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/manifests/config.pp b/manifests/config.pp
index fba6836..de36b7d 100644
--- a/manifests/config.pp
+++ b/manifests/config.pp
@@ -58,7 +58,7 @@ class check_mk::config (
# local list of hosts is in /omd/sites/${site}/etc/check_mk/all_hosts_static and is appended
concat::fragment { 'all-hosts-static':
- ensure => "${etc_dir}/check_mk/all_hosts_static",
+ source => "${etc_dir}/check_mk/all_hosts_static",
target => "${etc_dir}/check_mk/main.mk",
order => 18,
}
@@ -87,7 +87,7 @@ class check_mk::config (
}
# local config is in /omd/sites/${site}/etc/check_mk/main.mk.local and is appended
concat::fragment { 'check_mk-local-config':
- ensure => "${etc_dir}/check_mk/main.mk.local",
+ source => "${etc_dir}/check_mk/main.mk.local",
target => "${etc_dir}/check_mk/main.mk",
order => 99,
}