Files
puppet-designate/manifests/client.pp
Takashi Kajinami 8f560f1de1 Prepare for voxpupuli-puppet-lint-plugins
Fix new lint errors detected when full of the voxpupili lint plugins
are enabled.

Change-Id: I9705ad334d05a2041f0f9c4b885fc3fd44342720
Signed-off-by: Takashi Kajinami <kajinamit@oss.nttdata.com>
2025-08-20 00:39:05 +09:00

29 lines
713 B
Puppet

# == Class designate::client
#
# Installs the designate python library.
#
# == Parameters
#
# [*package_ensure*]
# (optional) Ensure state for package.
# Defaults to 'present'
#
# [*client_package_name*]
# (optional) Name of the package containing client resources
# Defaults to $designate::params::client_package_name
#
class designate::client (
$package_ensure = 'present',
$client_package_name = $designate::params::client_package_name,
) inherits designate::params {
include designate::deps
package { 'python-designateclient':
ensure => $package_ensure,
name => $client_package_name,
tag => ['openstack', 'openstackclient'],
}
include openstacklib::openstackclient
}