puppet-swift/manifests/client.pp
Adam Vinsh c659733d39 Add hooks for external install & svc management
This adds defined anchor points for external modules to hook into the
software install, config and service dependency chain.  This allows
external modules to manage software installation (virtualenv,
containers, etc) and service management (pacemaker) without needing rely
on resources that may change or be renamed.

Change-Id: I00cf4846bb933291469be94c9debed425eddf798
2016-05-25 08:52:47 -04:00

25 lines
417 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','swift-support-package']
}
}