diff options
-rw-r--r-- | manifests/init.pp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/manifests/init.pp b/manifests/init.pp index 8741ec7..bd6358e 100644 --- a/manifests/init.pp +++ b/manifests/init.pp @@ -94,6 +94,7 @@ # - The final file can be referened as File["/path/to/file"] or # File["concat_/path/to/file"] define concat( + $path = $name, $owner = $::id, $group = $concat::setup::root_group, $mode = '0644', @@ -189,6 +190,7 @@ define concat( } file { $name: + path => $path, ensure => present, alias => "concat_${name}", group => $group, |