diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-02-09 18:21:25 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-02-09 18:21:25 -0200 |
commit | 730c1daa855d2495227dbf5266285ec5252c2c84 (patch) | |
tree | 1b8e44148a6c2a43b45821a85636688a33e9fc1a | |
parent | f3102cf4c6c2f1c6bfe06e4642efdd6f3cfb9ea8 (diff) | |
download | puppet-git-730c1daa855d2495227dbf5266285ec5252c2c84.tar.gz puppet-git-730c1daa855d2495227dbf5266285ec5252c2c84.tar.bz2 |
Minor fix
-rw-r--r-- | manifests/daemon.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/daemon.pp b/manifests/daemon.pp index 41ef0b7..28c3eaf 100644 --- a/manifests/daemon.pp +++ b/manifests/daemon.pp @@ -1,7 +1,7 @@ class git::daemon ( $implementation = hiera('git::daemon::implementation', 'gitolite'), $inetd = hiera('git::daemon::inetd', true), - $groups = hiera('git::daemon::groups, [ 'puppet' ]), + $groups = hiera('git::daemon::groups', [ 'puppet' ]), ) { # directory for git user and repositories file { "/var/git": |