Skip to content

Commit

Permalink
Use system-dependent value for group
Browse files Browse the repository at this point in the history
  • Loading branch information
Roy Hubbard authored and bastelfreak committed May 7, 2018
1 parent 8d3f102 commit d94c0fa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion manifests/phpunit.pp
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand All @@ -34,7 +35,7 @@
-> file { $path:
mode => '0555',
owner => root,
group => root,
group => $root_group,
}

if $auto_update {
Expand Down

0 comments on commit d94c0fa

Please sign in to comment.