system-config/modules/openstack_project/manifests/stackalytics.pp
Paul Belanger b90eca9bcb Remove pabelanger from asterisk and stackalytics
This is no longer needed as pabelanger is now an infra-root.

Change-Id: I6939c2ee9e3662c08441dd0ddad3e84a47bd0192
Signed-off-by: Paul Belanger <pabelanger@redhat.com>
2016-03-08 16:26:37 -05:00

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,
}
}