diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2010-06-03 15:16:14 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2010-06-03 15:16:14 -0300 |
commit | 76b4d2a29bf10924356f39c81b4d3ab8fc54b6bd (patch) | |
tree | c2727e23da80876a80bd7bf0ba2f0d1d9c306725 | |
parent | 189e763a6f9fcd0f211d80681530fc184b3404d0 (diff) | |
download | puppet-git-76b4d2a29bf10924356f39c81b4d3ab8fc54b6bd.tar.gz puppet-git-76b4d2a29bf10924356f39c81b4d3ab8fc54b6bd.tar.bz2 |
Fixing /var/git/repositories condition
-rw-r--r-- | manifests/gitosis.pp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manifests/gitosis.pp b/manifests/gitosis.pp index 77c210e..ebe0c2a 100644 --- a/manifests/gitosis.pp +++ b/manifests/gitosis.pp @@ -12,7 +12,7 @@ class gitosis inherits git { # repositories folder file { "/var/git/repositories": - ensure => present, + ensure => directory, owner => gitosis, group => gitosis, mode => 0755, |