Dont include logging in init class by default

Change-Id: I03ec2a22b1b388e70c2260ca969565b54cb1c356
This commit is contained in:
Tobias Urdin 2018-11-29 11:01:59 +01:00
parent ef4562d8b7
commit 7787ad805f
3 changed files with 4 additions and 5 deletions

View File

@ -213,7 +213,6 @@ class tacker(
) inherits tacker::params {
include ::tacker::deps
include ::tacker::logging
if $sync_db {
include ::tacker::db::sync

View File

@ -0,0 +1,4 @@
---
upgrade:
- |
tacker::logging is now not included in init class by default.

View File

@ -10,10 +10,6 @@ describe 'tacker' do
}
end
it 'contains the logging class' do
is_expected.to contain_class('tacker::logging')
end
it 'contains the deps class' do
is_expected.to contain_class('tacker::deps')
end