
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
30 lines
563 B
Puppet
30 lines
563 B
Puppet
#
|
|
# Configure swift staticweb, see documentation for Swift staticweb middleware
|
|
# to understand more about configuration.
|
|
#
|
|
# == Dependencies
|
|
#
|
|
# == Examples
|
|
#
|
|
# include 'swift::proxy::staticweb'
|
|
#
|
|
# == Authors
|
|
#
|
|
# Mehdi Abaakouk <sileht@sileht.net>
|
|
#
|
|
# == Copyright
|
|
#
|
|
# Copyright 2012 eNovance licensing@enovance.com
|
|
#
|
|
class swift::proxy::staticweb() {
|
|
|
|
include ::swift::deps
|
|
|
|
concat::fragment { 'swift-proxy-staticweb':
|
|
target => '/etc/swift/proxy-server.conf',
|
|
content => template('swift/proxy/staticweb.conf.erb'),
|
|
order => '32',
|
|
}
|
|
|
|
}
|