
... because swift3 is no longer maintained since s3api middleware was merged into swift. Change-Id: I287258ee6ee24a6f44d2e22d01c798da570d1fa8
32 lines
523 B
Puppet
32 lines
523 B
Puppet
#
|
|
# DEPRECATED!
|
|
# Configure swift swift3.
|
|
#
|
|
# == Dependencies
|
|
#
|
|
# == Parameters
|
|
#
|
|
# [*ensure*]
|
|
# Enable or not swift3 middleware
|
|
# Defaults to undef
|
|
#
|
|
# == Examples
|
|
#
|
|
# == Authors
|
|
#
|
|
# Francois Charlier fcharlier@ploup.net
|
|
# Joe Topjian joe@topjian.net
|
|
#
|
|
# == Copyright
|
|
#
|
|
# Copyright 2012 eNovance licensing@enovance.com
|
|
#
|
|
class swift::proxy::swift3(
|
|
$ensure = undef
|
|
) {
|
|
|
|
warning('swift::proxy::swift3 is deprecated and has no effect. \
|
|
Use swift::proxy::s3api to use s3api middleware implemented in swift.')
|
|
|
|
}
|