diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2009-12-06 14:04:55 -0200 |
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2009-12-06 14:04:55 -0200 |
| commit | 491770f8156ac3e91ca8e605f7b931ce768c1510 (patch) | |
| tree | a535124463dfcde38fc0a74ef2096c67263a95dd | |
| parent | 10165927fe1847be3451413a72c631fe1a99c1f9 (diff) | |
| download | puppet-git-491770f8156ac3e91ca8e605f7b931ce768c1510.tar.gz puppet-git-491770f8156ac3e91ca8e605f7b931ce768c1510.tar.bz2 | |
Expliciting gid for user gitosis
| -rw-r--r-- | manifests/gitosis.pp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/manifests/gitosis.pp b/manifests/gitosis.pp index 819fec4..d09e11d 100644 --- a/manifests/gitosis.pp +++ b/manifests/gitosis.pp @@ -26,7 +26,8 @@ class gitosis inherits git { ensure => present, home => "/var/git", shell => "/bin/sh", - groups => [ "gitosis", "puppet" ], + gid => "gitosis", + groups => [ "puppet" ], require => Group["gitosis"]; } |
