b90eca9bcb
This is no longer needed as pabelanger is now an infra-root. Change-Id: I6939c2ee9e3662c08441dd0ddad3e84a47bd0192 Signed-off-by: Paul Belanger <pabelanger@redhat.com>
14 lines
372 B
Puppet
14 lines
372 B
Puppet
# == Class: openstack_project::stackalytics
|
|
#
|
|
class openstack_project::stackalytics (
|
|
$gerrit_ssh_user,
|
|
$stackalytics_ssh_private_key,
|
|
$vhost_name = $::fqdn,
|
|
) {
|
|
class { '::stackalytics':
|
|
gerrit_ssh_user => $gerrit_ssh_user,
|
|
stackalytics_ssh_private_key => $stackalytics_ssh_private_key,
|
|
vhost_name => $vhost_name,
|
|
}
|
|
}
|