
... because the latest lint no longer allows usage of legacy facts and top scope fact. Change-Id: I7de4bd06c59b921c8774accf462db1cf434d5cf6
21 lines
396 B
Puppet
21 lines
396 B
Puppet
# == Class: manila::coordination
|
|
#
|
|
# Setup and configure Manila coordination settings.
|
|
#
|
|
# === Parameters
|
|
#
|
|
# [*backend_url*]
|
|
# (Optional) Coordination backend URL.
|
|
# Defaults to $facts['os_service_default']
|
|
#
|
|
class manila::coordination (
|
|
$backend_url = $facts['os_service_default'],
|
|
) {
|
|
|
|
include manila::deps
|
|
|
|
oslo::coordination{ 'manila_config':
|
|
backend_url => $backend_url
|
|
}
|
|
}
|