Remove management of swift-object-reconstructor

This service is supported in upstream now and being added into
puppet-swift. This needs to be removed and should be managed via
swift::storage::object instead if necessary.

Change-Id: I46c4c5ca0ee86404739876afe2a7110cd59fb362
Closes-Bug: #1698424
This commit is contained in:
Alex Schultz 2017-06-16 11:41:44 -06:00
parent 442f6a0ed7
commit 0f596ff203
2 changed files with 0 additions and 11 deletions

View File

@ -186,11 +186,6 @@ class openstack_tasks::swift::proxy_storage {
enable => false,
require => Package['swift-container'],
}
service { 'swift-object-reconstructor':
ensure => stopped,
enable => false,
require => Package['swift-object'],
}
}
}

View File

@ -229,12 +229,6 @@ describe manifest do
).that_requires('Package[swift-container]')
end
it 'should disable swift-object-reconstructor service' do
should contain_service('swift-object-reconstructor').with(
'ensure' => 'stopped',
'enable' => 'false',
).that_requires('Package[swift-object]')
end
end
if deploy_swift_proxy or deploy_swift_storage