1ab3c2ad81
This is a mechanically generated change to replace openstack.org git:// URLs with https:// equivalents. This is in aid of a planned future move of the git hosting infrastructure to a self-hosted instance of gitea (https://gitea.io), which does not support the git wire protocol at this stage. This update should result in no functional change. For more information see the thread at http://lists.openstack.org/pipermail/openstack-discuss/2019-March/003825.html Change-Id: Iae9cb7f3fdd8fb5c0bcb1112aa4eca9f3430193f
117 lines
3.5 KiB
Puppet
117 lines
3.5 KiB
Puppet
# Copyright 2013 Hewlett-Packard Development Company, L.P.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
#
|
|
# == Define: reviewday
|
|
#
|
|
define reviewday::site(
|
|
$gerrit_port = '29418',
|
|
$gerrit_url = 'localhost',
|
|
$gerrit_user = 'reviewday',
|
|
$git_url = 'https://git.openstack.org/openstack-infra/reviewday',
|
|
$httproot = '/srv/static/reviewday',
|
|
$reviewday_gerrit_ssh_key = undef,
|
|
$reviewday_rsa_key_contents = undef,
|
|
$reviewday_rsa_pubkey_contents = undef,
|
|
$serveradmin = 'webmaster@example.org',
|
|
) {
|
|
|
|
file { '/var/lib/reviewday/.ssh/':
|
|
ensure => directory,
|
|
owner => 'reviewday',
|
|
group => 'reviewday',
|
|
mode => '0700',
|
|
require => User['reviewday'],
|
|
}
|
|
|
|
if $reviewday_rsa_key_contents != undef {
|
|
file { '/var/lib/reviewday/.ssh/id_rsa':
|
|
owner => 'reviewday',
|
|
group => 'reviewday',
|
|
mode => '0600',
|
|
content => $reviewday_rsa_key_contents,
|
|
replace => true,
|
|
require => File['/var/lib/reviewday/.ssh/']
|
|
}
|
|
}
|
|
|
|
if $reviewday_rsa_pubkey_contents != undef {
|
|
file { '/var/lib/reviewday/.ssh/id_rsa.pub':
|
|
owner => 'reviewday',
|
|
group => 'reviewday',
|
|
mode => '0600',
|
|
content => $reviewday_rsa_pubkey_contents,
|
|
replace => true,
|
|
require => File['/var/lib/reviewday/.ssh/']
|
|
}
|
|
}
|
|
|
|
if $reviewday_gerrit_ssh_key != undef {
|
|
file { '/var/lib/reviewday/.ssh/known_hosts':
|
|
owner => 'reviewday',
|
|
group => 'reviewday',
|
|
mode => '0600',
|
|
content => "${gerrit_url} ${reviewday_gerrit_ssh_key}",
|
|
replace => true,
|
|
require => File['/var/lib/reviewday/.ssh/']
|
|
}
|
|
}
|
|
|
|
vcsrepo { '/var/lib/reviewday/reviewday':
|
|
ensure => latest,
|
|
provider => git,
|
|
source => $git_url,
|
|
revision => 'master',
|
|
owner => 'reviewday',
|
|
group => 'reviewday',
|
|
require => [
|
|
User['reviewday'],
|
|
Group['reviewday'],
|
|
]
|
|
}
|
|
|
|
exec { 'install-reviewday-dependencies':
|
|
command => 'pip install -r /var/lib/reviewday/reviewday/requirements.txt',
|
|
path => '/usr/local/bin/:/bin/',
|
|
subscribe => Vcsrepo['/var/lib/reviewday/reviewday'],
|
|
refreshonly => true,
|
|
require => Class['pip'],
|
|
}
|
|
|
|
file { $httproot:
|
|
ensure => directory,
|
|
owner => 'reviewday',
|
|
group => 'reviewday',
|
|
mode => '0755',
|
|
}
|
|
|
|
file { '/var/lib/reviewday/.ssh/config':
|
|
ensure => present,
|
|
content => template('reviewday/ssh_config.erb'),
|
|
owner => 'reviewday',
|
|
group => 'reviewday',
|
|
mode => '0644',
|
|
}
|
|
|
|
cron { 'update reviewday':
|
|
command => "cd /var/lib/reviewday/reviewday && PYTHONPATH=\$PWD flock -n /var/lib/reviewday/update.lock python bin/reviewday -o ${httproot} >> /var/log/reviewday.log 2>&1",
|
|
environment => 'PATH=/bin:/usr/bin:/usr/local/bin',
|
|
minute => '*/30',
|
|
user => 'reviewday',
|
|
require => Exec['install-reviewday-dependencies'],
|
|
}
|
|
|
|
}
|
|
|
|
# vim:sw=2:ts=2:expandtab:textwidth=79
|