
In swift::ringbuilder::rebalance there was a typo in the $name validation code. This commit updates the spelling to be correct.
11 lines
266 B
Puppet
11 lines
266 B
Puppet
define swift::ringbuilder::rebalance() {
|
|
|
|
validate_re($name, '^object|container|account$')
|
|
|
|
exec { "rebalance_${name}":
|
|
command => "swift-ring-builder /etc/swift/${name}.builder rebalance",
|
|
path => ['/usr/bin'],
|
|
refreshonly => true,
|
|
}
|
|
}
|