
This change introduces capability to customize internal-client.conf, which is used by several daemon processes like container-sharder. Closes-Bug: #1986599 Related-Bug: #1921319 Change-Id: I200e3a4ff323a07778ec6c4d7dd96824c72a12cf
26 lines
425 B
Puppet
26 lines
425 B
Puppet
#
|
|
# Configure swift cache_errors.
|
|
#
|
|
# == Dependencies
|
|
#
|
|
# == Examples
|
|
#
|
|
# include swift::internal_client::catch_errors
|
|
#
|
|
# == Authors
|
|
#
|
|
# Francois Charlier fcharlier@ploup.net
|
|
#
|
|
# == Copyright
|
|
#
|
|
# Copyright 2012 eNovance licensing@enovance.com
|
|
#
|
|
class swift::internal_client::catch_errors() {
|
|
|
|
include swift::deps
|
|
|
|
swift_internal_client_config {
|
|
'filter:catch_errors/use': value => 'egg:swift#catch_errors';
|
|
}
|
|
}
|