Dont include logging in init class by default

Change-Id: If5fc3e4e22226ccc97f03afb4dc0dc9a84e4fba4
This commit is contained in:
Tobias Urdin 2018-11-29 11:08:55 +01:00
parent 17e2cf230e
commit 3ee5284034
3 changed files with 4 additions and 5 deletions

View File

@ -369,7 +369,6 @@ class watcher (
include ::watcher::params
include ::watcher::policy
include ::watcher::db
include ::watcher::logging
package { 'watcher':
ensure => $package_ensure,

View File

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

View File

@ -9,10 +9,6 @@ describe 'watcher' do
{ :purge_config => false }
end
it 'contains the logging class' do
is_expected.to contain_class('watcher::logging')
end
it 'contains the db class' do
is_expected.to contain_class('watcher::db')
end