d8a8b70547
The swift-object-expirer service was not supported by puppet-swift. Adding support by creating a new class (swift::objectexpirer), and its associated custom type/provider. Change-Id: I498ffe525a7316c0091e4c9d8b7d9658234231f6
11 lines
221 B
Ruby
11 lines
221 B
Ruby
Puppet::Type.type(:swift_object_expirer_config).provide(
|
|
:ini_setting,
|
|
:parent => Puppet::Type.type(:openstack_config).provider(:ini_setting)
|
|
) do
|
|
|
|
def self.file_path
|
|
'/etc/swift/object-expirer.conf'
|
|
end
|
|
|
|
end
|