From d94c0fabf180bc659ce7cc658ea3d09d5f1a48eb Mon Sep 17 00:00:00 2001 From: Roy Hubbard Date: Sun, 8 Jan 2017 00:35:27 -0500 Subject: [PATCH] Use system-dependent value for group --- manifests/phpunit.pp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/manifests/phpunit.pp b/manifests/phpunit.pp index 643800da..3ff30886 100644 --- a/manifests/phpunit.pp +++ b/manifests/phpunit.pp @@ -17,6 +17,7 @@ class php::phpunit ( String $source = $php::params::phpunit_source, Stdlib::Absolutepath $path = $php::params::phpunit_path, + String[1] $root_group = $php::params::root_group, Boolean $auto_update = true, Integer $max_age = $php::params::phpunit_max_age, ) inherits php::params { @@ -34,7 +35,7 @@ -> file { $path: mode => '0555', owner => root, - group => root, + group => $root_group, } if $auto_update {