blob: c5a812ba12f5eaba4195ceb6bcc6d2bc2c5f641f (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
class repositories::git_mirror {
file { "/git":
ensure => directory,
}
git::mirror { "/git/forum/":
description => "Reference code for forum.$domain",
source => "git://git.$domain/forum/"
}
}
|