
... so that the name is consistent with the other puppet modules. Change-Id: I8237b7760f3f7a7bf2806524b2582ef85d3bc6d5
11 lines
250 B
Ruby
11 lines
250 B
Ruby
Puppet::Type.type(:nova_paste_api_ini).provide(
|
|
:ini_setting,
|
|
:parent => Puppet::Type.type(:nova_api_paste_ini).provider(:ini_setting)
|
|
) do
|
|
|
|
def create
|
|
super
|
|
warning('nova_paste_api_ini is deprecated. Use nova_api_paste_ini')
|
|
end
|
|
end
|