diff --git a/spec/acceptance/basic_spec.rb b/spec/acceptance/basic_spec.rb index 3a4a11f..a83c5ac 100644 --- a/spec/acceptance/basic_spec.rb +++ b/spec/acceptance/basic_spec.rb @@ -179,9 +179,8 @@ describe 'puppet-zuul module', :if => ['debian', 'ubuntu'].include?(os[:family]) it { should be_listening } end - # TODO(mordred) Why is this not listening? - # describe port(4730) do - # it { should be_listening } - # end + describe port(4730) do + it { should be_listening } + end end end diff --git a/spec/acceptance/fixtures/postconditions.pp b/spec/acceptance/fixtures/postconditions.pp index 9551273..12e858a 100644 --- a/spec/acceptance/fixtures/postconditions.pp +++ b/spec/acceptance/fixtures/postconditions.pp @@ -1,5 +1,5 @@ -exec { 'starting zuul server': - command => '/etc/init.d/zuul start', +exec { 'starting zuul scheduler': + command => '/etc/init.d/zuul-scheduler start', } exec { 'starting zuul merger':