Puppet Class: gerrit::initialize
- Defined in:
- manifests/initialize.pp
Overview
Class: gerrit::initialize
This class performs the actual gerrit initialization. It should be idempotent and only run once. We don’t perform upgrades!
Parameters
This class accepts no parameters directly
Variables
The following variables are required
- gerrit_home
-
The home directory for the gerrit user / installation path
- gerrit_version
-
The version of the Gerrit war that will be downloaded
- options
-
A variable hash for configuration settings of Gerrit. The base class will take the default options from gerrit::params and combine it with anything in override_options (if defined) and use that as the hash that is passed to gerrit::install
Authors
Andrew Grimberg <agrimberg@linuxfoundation.org>
Copyright
Copyright 2014 Andrew Grimberg
34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 |
# File 'manifests/initialize.pp', line 34
class gerrit::initialize (
$gerrit_home,
$gerrit_version,
$options
) {
validate_string($gerrit_home)
validate_string($gerrit_version)
validate_hash($options)
$gerrit_user = $options['container']['user']
validate_string($gerrit_user)
$gerrit_basepath = $options['gerrit']['basePath']
validate_absolute_path($gerrit_basepath)
exec { 'gerrit_initialize':
cwd => $gerrit_home,
path => [ '/usr/bin', '/usr/sbin' ],
command => "java -jar ${gerrit_home}/bin/gerrit-${gerrit_version}.war \
init -d ${gerrit_home} --batch && java -jar \
${gerrit_home}/bin/gerrit.war reindex -d ${gerrit_home}",
creates => "${gerrit_basepath}/All-Projects.git/HEAD",
user => $gerrit_user,
}
}
|