aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--manifests/honeycomb.pp3
-rw-r--r--spec/acceptance/honeycomb_spec.rb1
-rw-r--r--spec/classes/honeycomb_spec.rb2
3 files changed, 3 insertions, 3 deletions
diff --git a/manifests/honeycomb.pp b/manifests/honeycomb.pp
index ef216c3..619f98e 100644
--- a/manifests/honeycomb.pp
+++ b/manifests/honeycomb.pp
@@ -63,8 +63,6 @@ class fdio::honeycomb (
validate_array($interface_role_map)
- include ::fdio
-
package { 'honeycomb':
ensure => present,
require => Package['vpp'],
@@ -85,7 +83,6 @@ class fdio::honeycomb (
hasstatus => true,
hasrestart => true,
require => [ Service['vpp'], Package['honeycomb'] ],
- restart => 'systemctl stop vpp;systemctl stop honeycomb;rm -rf /var/lib/honeycomb/persist/*;systemctl start vpp; sleep 5;systemctl start honeycomb',
}
if !empty($opendaylight_ip) {
diff --git a/spec/acceptance/honeycomb_spec.rb b/spec/acceptance/honeycomb_spec.rb
index 012693b..36f8a2e 100644
--- a/spec/acceptance/honeycomb_spec.rb
+++ b/spec/acceptance/honeycomb_spec.rb
@@ -5,6 +5,7 @@ describe 'fdio::honeycomb' do
describe 'default parameters' do
it 'should work with no errors' do
pp= <<-EOS
+ class { '::fdio': }
class { '::fdio::honeycomb': }
EOS
diff --git a/spec/classes/honeycomb_spec.rb b/spec/classes/honeycomb_spec.rb
index fcd31f6..8fc2252 100644
--- a/spec/classes/honeycomb_spec.rb
+++ b/spec/classes/honeycomb_spec.rb
@@ -7,6 +7,8 @@ describe 'fdio::honeycomb' do
:operatingsystemmajrelease => '7',
}}
+ let(:pre_condition) { 'include fdio' }
+
it { should compile }
it { should compile.with_all_deps }
it { should contain_class('fdio::honeycomb') }