
The stankevich/puppet-python module was causing issues, so this patch removed the dependency on it. Now pip is used to install directly onto the system instead of in a virtualenv. Change-Id: I8f9922ab05429f15cc718561ed3b324ffe8ea746
64 lines
2.2 KiB
Puppet
64 lines
2.2 KiB
Puppet
# Copyright (c) 2015 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.
|
|
|
|
# == Class: refstack::params
|
|
#
|
|
# Centralized configuration management for the Refstack module.
|
|
#
|
|
class refstack::params (
|
|
|
|
# Source and install directories.
|
|
$src_api_root = '/opt/refstack-api',
|
|
$src_www_root = '/opt/refstack-www',
|
|
$install_www_root = '/var/www/refstack-www',
|
|
|
|
# The user under which refstack will run.
|
|
$user = 'refstack',
|
|
$group = 'refstack',
|
|
$server_admin = undef,
|
|
$hostname = $::ipaddress,
|
|
|
|
# [database] refstack.conf
|
|
$mysql_user = 'refstack',
|
|
$mysql_user_password,
|
|
$mysql_host = localhost,
|
|
$mysql_port = 3306,
|
|
$mysql_database = 'refstack',
|
|
|
|
# Apache2 ssl configuration
|
|
$ssl_cert_content = undef,
|
|
$ssl_cert = '/etc/ssl/certs/refstack.pem',
|
|
$ssl_key_content = undef,
|
|
$ssl_key = '/etc/ssl/private/refstack.key',
|
|
$ssl_ca_content = undef,
|
|
$ssl_ca = undef, # '/etc/ssl/certs/ca.pem'
|
|
) {
|
|
|
|
# Resolve a few parameters based on the install environment.
|
|
if $::operatingsystem != 'Ubuntu' or $::operatingsystemrelease < 13.10 {
|
|
fail("${::operatingsystem} ${::operatingsystemrelease} is not supported.")
|
|
}
|
|
|
|
# Build the connection string from individual parameters
|
|
$mysql_connection_string = "mysql+pymysql://${mysql_user}:${mysql_user_password}@${mysql_host}:${mysql_port}/${mysql_database}"
|
|
|
|
# CA file needs special treatment, since we want the path variable
|
|
# to be undef in some cases.
|
|
if $ssl_ca == undef and $ssl_ca_content != undef {
|
|
$resolved_ssl_ca = '/etc/ssl/certs/refstack.ca.pem'
|
|
} else {
|
|
$resolved_ssl_ca = $ssl_ca
|
|
}
|
|
}
|