a738129d22
This deprecates the nova-consoleauth service and the surrounding functionality. Depends-On: https://review.opendev.org/661262 Change-Id: Ia4d4e411647e039b655fe62edb06afe9c53288cf
32 lines
677 B
Puppet
32 lines
677 B
Puppet
# == Class: nova::consoleauth
|
|
#
|
|
# Installs and configures consoleauth service
|
|
#
|
|
# The consoleauth service is required for vncproxy auth
|
|
# for Horizon
|
|
#
|
|
# DEPRECATED!
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*enabled*]
|
|
# (optional) Whether the nova consoleauth service will be run
|
|
# Defaults to true
|
|
#
|
|
# [*manage_service*]
|
|
# (optional) Whether to start/stop the service
|
|
# Defaults to true
|
|
#
|
|
# [*ensure_package*]
|
|
# (optional) Whether the nova consoleauth package will be installed
|
|
# Defaults to 'present'
|
|
#
|
|
class nova::consoleauth(
|
|
$enabled = true,
|
|
$manage_service = true,
|
|
$ensure_package = 'present'
|
|
) {
|
|
|
|
warning('nova::consoleauth is deprecated and has no effect')
|
|
}
|