Fixed path to repositories from git::daemon.

This commit is contained in:
Timo Mkinen 2011-06-05 23:41:48 +03:00
parent caee979ec1
commit 7da2da06e2

View file

@ -79,6 +79,19 @@ class git::daemon inherits git::server {
Package["git-daemon"] ],
}
case $operatingsystem {
"centos","fedora": {
file { "/var/lib/git":
ensure => link,
force => true,
target => "/srv/git",
owner => "root",
group => "root",
require => File["/srv/git"],
}
}
}
}