Merge "Dont include logging in init class by default"

This commit is contained in:
Zuul 2018-12-07 02:14:07 +00:00 committed by Gerrit Code Review
commit 2bd375adbe
3 changed files with 4 additions and 5 deletions

View File

@ -371,7 +371,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