mirror of https://github.com/zulip/zulip.git
22 lines
480 B
Puppet
22 lines
480 B
Puppet
class humbug::git {
|
|
class { 'humbug::base': }
|
|
|
|
# We run our wiki off of git.humbughq.com; this may change.
|
|
class { 'humbug::wiki': }
|
|
|
|
$git_packages = [ ]
|
|
package { $git_packages: ensure => "installed" }
|
|
|
|
file { '/srv/git/humbug.git':
|
|
ensure => 'directory',
|
|
owner => 'humbug',
|
|
group => 'humbug',
|
|
mode => 755,
|
|
}
|
|
|
|
file { '/srv/git/humbug.git/hooks/post-receive':
|
|
ensure => 'link',
|
|
target => '/home/humbug/humbug/tools/post-receive',
|
|
}
|
|
}
|