
The backend class has been removed and the related backend config service has been coupled with the file and swift classes. This is to reduce the code complexity.
17 lines
270 B
Puppet
17 lines
270 B
Puppet
#
|
|
# used to model the line in the file
|
|
# that configures which storage backend
|
|
# to use
|
|
#
|
|
class glance::notify(
|
|
$notifier_strategy
|
|
) {
|
|
|
|
glance::api::config { 'notify':
|
|
config => {
|
|
'notifier_strategy' => $notifier_strategy,
|
|
},
|
|
order => '06',
|
|
}
|
|
}
|