2015-03-23 18:11:23 +01:00
|
|
|
# == Class: swift::proxy::swauth
|
|
|
|
#
|
|
|
|
# === Parameters:
|
|
|
|
#
|
|
|
|
# [*package_ensure*]
|
|
|
|
# The status of the python-swauth package.
|
|
|
|
# Defaults to 'present'
|
|
|
|
#
|
2012-04-22 12:11:27 -07:00
|
|
|
# [*swauth_endpoint*]
|
2015-03-23 18:11:23 +01:00
|
|
|
# (optional) The endpoint used to autenticate to Swauth WSGI.
|
|
|
|
# Defaults to '127.0.0.1'
|
|
|
|
#
|
|
|
|
# [*swauth_super_admin_key*]
|
|
|
|
# (optional) The Swauth WSGI filter admin key.
|
|
|
|
# Defaults to 'swauthkey'
|
|
|
|
#
|
|
|
|
#
|
2012-04-22 12:11:27 -07:00
|
|
|
class swift::proxy::swauth(
|
|
|
|
$swauth_endpoint = '127.0.0.1',
|
2012-11-07 21:36:01 +04:00
|
|
|
$swauth_super_admin_key = 'swauthkey',
|
|
|
|
$package_ensure = 'present'
|
2012-04-22 12:11:27 -07:00
|
|
|
) {
|
|
|
|
|
|
|
|
package { 'python-swauth':
|
2015-03-23 18:11:23 +01:00
|
|
|
ensure => $package_ensure,
|
|
|
|
before => Package['swift-proxy'],
|
2012-04-22 12:11:27 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
concat::fragment { 'swift_proxy_swauth':
|
|
|
|
target => '/etc/swift/proxy-server.conf',
|
|
|
|
content => template('swift/proxy/swauth.conf.erb'),
|
|
|
|
order => '20',
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|