change enabled_backends to enabled_share_backends

This commit is contained in:
Ryan Hefner 2014-08-27 20:06:07 -04:00
parent d6151bd582
commit 3fb439e342

View File

@ -11,12 +11,12 @@
#
# Author: Andrew Woodward <awoodward@mirantis.com>
class manila::backends (
$enabled_backends = undef
$enabled_share_backends = undef
){
# Maybe this could be extented to dynamicly find the enabled names
manila_config {
'DEFAULT/enabled_share_backends': value => join($enabled_backends, ',');
'DEFAULT/enabled_share_backends': value => join($enabled_share_backends, ',');
}
}