Takashi Kajinami 0a2d1a26a1 Move out swift client from service packages
The swiftclient package is not required by swift itself, thus we don't
have to install it along with the other swift packages.

Change-Id: If241e635109f5970e725d7776026f0d7b4951024
2023-11-20 00:30:12 +09:00

25 lines
389 B
Puppet

# == Class: swift::client
#
# Installs swift client.
#
# === Parameters
#
# [*ensure*]
# (optional) Ensure state of the package.
# Defaults to 'present'.
#
class swift::client (
$ensure = 'present',
) {
include swift::deps
include swift::params
package { 'swiftclient':
ensure => $ensure,
name => $::swift::params::client_package,
tag => 'openstack',
}
}