Files
puppet-glance/manifests/notify.pp
Dan Bode 151493f294 Remove backend class
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.
2012-04-03 10:00:44 -07:00

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',
}
}