
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
25 lines
389 B
Puppet
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',
|
|
}
|
|
|
|
}
|