
Switch to $::os_service_default all params in logging and db. Changes: logging.pp, db.pp and tests. Related-bug: #1515273 Change-Id: Idf7bc36d321328391a1b361add965c53627124a4
17 lines
370 B
Ruby
17 lines
370 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'manila::db::sync' do
|
|
|
|
let :facts do
|
|
@default_facts.merge({:osfamily => 'Debian'})
|
|
end
|
|
it { is_expected.to contain_exec('manila-manage db_sync').with(
|
|
:command => 'manila-manage db sync',
|
|
:path => '/usr/bin',
|
|
:user => 'manila',
|
|
:refreshonly => true,
|
|
:logoutput => 'on_failure'
|
|
) }
|
|
|
|
end
|