Created
July 8, 2011 06:01
-
-
Save boundvariable/1071235 to your computer and use it in GitHub Desktop.
Managing git repos with gitosis and puppet
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[gitosis] | |
loglevel = DEBUG | |
[group gitosis-admin] | |
writable = gitosis-admin | |
members = | |
<% repositories.each do |repo| -%> | |
[repo <%= repo["name"] %>] | |
description = none | |
[group <%= repo["name"] %>_committers] | |
writable = <%= repo["name"] %> | |
members = <%= repo["owner"] %> | |
<% end -%> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class git::gitosis { | |
# yum was installing a broken gitosis so had to do it manually | |
exec { "git clone git://eagain.net/gitosis": | |
creates => "/tmp/gitosis", | |
cwd => "/tmp", | |
alias => "clone_gitosis", | |
timeout => "0" | |
} | |
exec { "python setup.py install": | |
require => Exec["clone_gitosis"], | |
creates => "/usr/bin/gitosis-init", | |
alias => "install_gitosis", | |
timeout => "0", | |
cwd => "/tmp/gitosis" | |
} | |
file { "/home/gitosis": | |
ensure => "directory" | |
} | |
file { "/home/gitosis/.ssh/": | |
ensure => "directory", | |
recurse => true, | |
owner => "gitosis", | |
group => "gitosis", | |
require => File["/home/gitosis"] | |
} | |
file { "/home/gitosis/.ssh/gitosis.pub": | |
source => "puppet:///modules/git/gitosis.pub", | |
owner => "gitosis", | |
group => "gitosis" | |
} | |
file { "/var/lib/gitosis/gitosis": | |
ensure => "directory", | |
recurse => true, | |
owner => "gitosis", | |
group => "gitosis" | |
} | |
file { "/var/lib/gitosis/repositories": | |
ensure => "directory", | |
owner => "gitosis", | |
group => "gitosis" | |
} | |
exec { "sudo -H -u gitosis gitosis-init < /home/gitosis/.ssh/gitosis.pub": | |
require => [Exec["install_gitosis"], File["/home/gitosis/.ssh/gitosis.pub"], File["/home/gitosis"]], | |
alias => "init_gitosis", | |
creates => "/var/lib/gitosis/repositories/gitosis-admin.git" | |
} | |
file { "/var/lib/gitosis/repositories/gitosis-admin.git/hooks/post-update": | |
mode => "755", | |
require => Exec["init_gitosis"] | |
} | |
file { "/usr/share/src/gitosis-admin/gitosis.conf": | |
content => template("git/gitosis_conf.erb"), | |
require => Exec["init_gitosis"], | |
notify => Exec["update_gitosis_admin"] | |
} | |
exec { "update_gitosis_admin": | |
cwd => "/usr/share/src/gitosis-admin", | |
command => "git add .; git commit -m 'Pushed from puppet master'; git push" | |
} | |
define generate_key_files { | |
file { "/usr/share/src/gitosis-admin/keydir/$name.pub": | |
content => template("git/pub_key.erb"), | |
notify => Exec["update_gitosis_admin"] | |
} | |
} | |
$pub_key_names_array = split($pub_key_names, ',') | |
generate_key_files { $pub_key_names_array: } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment