Puppet Class: gitolite::server::config
- Defined in:
- manifests/server/config.pp
Overview
Class: gitolite::server::config
Description
This class is designed to configure the system to use Gitolite and Gitweb
Parameters:
$server: Whether to install gitolite in addition to git core tools.
$site_name: (default: "fqdn Git Repository") The friendly name displayed on
the GitWeb main page.
$manage_apache: flag to determine whether gitolite module also manages Apache
configuration
$write_apache_conf_to: (file path). This option is used when you want to
contain apache configuration within the gitolite
class, but do not want to use the puppetlabs-apache
module to manage apache. This option takes a file
path and will write the apache template to a specific
file on the filesystem.
REQUIRES: $apache_notify
$apache_notify: Reference notification to be used if the gitolite module will
manage apache, but the puppetlabs-apache module is not
going to be used. This takes a type reference (e.g.:
Class['apache::service'] or Service['apache2']) to send
a notification to the reference to restart an external
apache service.
$vhost: the virtual host of the apache instance.
$ssh_key: the SSH key used to seed the admin account for gitolite.
Actions:
Configures gitolite/gitweb
Requires:
This module has no requirements
Sample Usage:
This module should not be called directly.
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 |
# File 'manifests/server/config.pp', line 36
class gitolite::server::config(
$site_name,
$ssh_key,
$vhost,
$manage_apache,
$apache_notify,
$write_apache_conf_to
) {
File {
owner => $gitolite::params::gt_uid,
group => $gitolite::params::gt_gid,
mode => '0644',
}
Exec {
path => '/usr/bin:/usr/sbin:/bin:/sbin:/usr/local/bin:/usr/local/sbin',
}
# gitolite User Setup
user { $gitolite::params::gt_uid:
ensure => 'present',
home => $gitolite::params::gt_repo_base,
gid => $gitolite::params::gt_gid,
comment => 'git repository hosting',
}
group { $gitolite::params::gt_gid:
ensure => 'present',
members => $gitolite::params::gt_httpd_uid,
}
# Git Filesystem Repository Setup
file { $gitolite::params::gt_repo_base:
ensure => 'directory',
}
file { $gitolite::params::gt_repo_dir:
ensure => 'directory',
}
file { "${gitolite::params::gt_httpd_conf_dir}/git.conf":
ensure => 'absent',
}
# Gitweb Setup
file { '/etc/gitweb.conf':
ensure => file,
content => template('gitolite/gitweb.conf.erb'),
}
## add pretty style sheets
file { "${gitolite::params::gt_gitweb_root}${gitolite::params::gt_gitweb_spath}":
ensure => directory,
}
file {
"${gitolite::params::gt_gitweb_root}${gitolite::params::gt_gitweb_spath}gitweb.css":
ensure => file,
source => 'puppet:///modules/gitolite/gitweb.css',
require =>
File["${gitolite::params::gt_gitweb_root}${gitolite::params::gt_gitweb_spath}"],
}
file {
"${gitolite::params::gt_gitweb_root}${gitolite::params::gt_gitweb_spath}gitweb.js":
ensure => file,
source => 'puppet:///modules/gitolite/gitweb.js',
require =>
File["${gitolite::params::gt_gitweb_root}${gitolite::params::gt_gitweb_spath}"],
}
# Flag modifier to allow user to choose whether to use
# puppetlabs-apache module to manage apache config
# -JDF (12/1/2011)
if $manage_apache == true {
# This flag allows other non- puppetlabs-apache modules to still be managed
# by this module
# Based on code provided by justone. Ref:
# https://github.com/jfryman/puppet-gitolite/pull/2
# -JDF (12/1/2011)
if $write_apache_conf_to != '' {
if $apache_notify == '' {
fail('Cannot properly manage Apache if a refresh reference is not ' +
'specified')
} else {
file { $write_apache_conf_to:
ensure => file,
content => template('gitolite/gitweb-apache-vhost.conf.erb'),
notify => $apache_notify,
require => [ File['/etc/gitweb.conf'],
File["${gitolite::params::gt_httpd_conf_dir}/git.conf"] ],
}
}
}
else {
# By default, use the puppetlabs-apache module to manage Apache
apache::vhost { $vhost:
port => '80',
docroot => $gitolite::params::gt_repo_dir,
ssl => false,
template => 'gitolite/gitweb-apache-vhost.conf.erb',
priority => '99',
require => [ File['/etc/gitweb.conf'],
File["${gitolite::params::gt_httpd_conf_dir}/git.conf"] ],
}
}
}
# Gitolite Configuration
file { "${gitolite::params::gt_repo_base}/.bash_history":
ensure => 'absent',
}
file { 'gitolite-key':
ensure => file,
path => "${gitolite::params::gt_repo_base}/gitolite.pub",
content => $ssh_key,
}
exec { 'install-gitolite':
command => "gl-setup ${gitolite::params::gt_repo_base}/gitolite.pub",
creates => "${gitolite::params::gt_repo_base}/projects.list",
cwd => $gitolite::params::gt_repo_base,
user => $gitolite::params::gt_uid,
environment => "HOME=${gitolite::params::gt_repo_base}",
require => File['gitolite-key'],
}
file { "${gitolite::params::gt_repo_base}/projects.list":
ensure => file,
mode => '0600',
require => Exec['install-gitolite'],
}
file { 'gitolite-config':
path => "${gitolite::params::gt_repo_base}/.gitolite.rc",
content => template('gitolite/gitolite.rc.erb'),
before => Exec['install-gitolite'],
}
}
|