c03b2df2ac
We should use {} in templated strings to avoid confusion about variable names. Also, make sure the required cert files are in place before trying to create a vhost. Change-Id: I24ef5ffe347a4a389acb282ea3a41b87fb34f6bc
63 lines
1.8 KiB
Puppet
63 lines
1.8 KiB
Puppet
# Copyright 2017 Red Hat, Inc.
|
|
#
|
|
# 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 openstack_project::website (
|
|
$aliases = undef,
|
|
$ssl_cert = undef,
|
|
$ssl_key = undef,
|
|
$ssl_intermediate = undef,
|
|
$template = 'openstack_project/website.vhost.erb',
|
|
) {
|
|
|
|
$afs_root = '/afs/openstack.org/'
|
|
|
|
::httpd::vhost { $name:
|
|
serveraliases => $aliases,
|
|
port => 443, # Is required despite not being used.
|
|
docroot => "${afs_root}/project/${name}/www",
|
|
priority => '50',
|
|
template => $template,
|
|
require => [File["/etc/ssl/certs/${name}.pem"],
|
|
File["/etc/ssl/private/${name}.key"],
|
|
File["/etc/ssl/certs/${name}_intermediate.pem"]],
|
|
}
|
|
|
|
file { "/etc/ssl/certs/${name}.pem":
|
|
ensure => present,
|
|
owner => 'root',
|
|
group => 'root',
|
|
mode => '0644',
|
|
content => $ssl_cert,
|
|
require => File['/etc/ssl/certs'],
|
|
}
|
|
|
|
file { "/etc/ssl/private/${name}.key":
|
|
ensure => present,
|
|
owner => 'root',
|
|
group => 'root',
|
|
mode => '0600',
|
|
content => $ssl_key,
|
|
require => File['/etc/ssl/private'],
|
|
}
|
|
|
|
file { "/etc/ssl/certs/${name}_intermediate.pem":
|
|
ensure => present,
|
|
owner => 'root',
|
|
group => 'root',
|
|
mode => '0644',
|
|
content => $ssl_intermediate,
|
|
require => File['/etc/ssl/certs'],
|
|
}
|
|
}
|