From 6c5d6e5d9967a0bf4ce78291d560197b627ad88b Mon Sep 17 00:00:00 2001 From: Cliff Wakefield Date: Mon, 2 Oct 2017 14:49:12 +1100 Subject: [PATCH] Made filepaths relative to directory --- manifests/server/conf.pp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/manifests/server/conf.pp b/manifests/server/conf.pp index 14fcbc1fc..77455220d 100644 --- a/manifests/server/conf.pp +++ b/manifests/server/conf.pp @@ -101,9 +101,9 @@ $hostname = undef, $server_id = undef, $version = undef, - $dump_file = '/var/named/data/cache_dump.db', - $statistics_file = '/var/named/data/named_stats.txt', - $memstatistics_file = '/var/named/data/named_mem_stats.txt', + $dump_file = "${directory}/data/cache_dump.db", + $statistics_file = "${directory}/data/named_stats.txt", + $memstatistics_file = "${directory}/data/named_mem_stats.txt", $allow_query = [ 'localhost' ], $allow_query_cache = [], $recursion = 'yes',