~racb/ubuntu/saucy/puppet/dep8-hiera

« back to all changes in this revision

Viewing changes to acceptance/tests/resource/service/ticket_4123_should_list_all_running_redhat.rb

  • Committer: Package Import Robot
  • Author(s): Marc Deslauriers
  • Date: 2012-07-14 01:56:30 UTC
  • mfrom: (1.1.29) (3.1.43 sid)
  • Revision ID: package-import@ubuntu.com-20120714015630-ntj41rkvkq4zph4y
Tags: 2.7.18-1ubuntu1
* Resynchronise with Debian. (LP: #1023931) Remaining changes:
  - debian/puppetmaster-passenger.postinst: Make sure we error if puppet
    config print doesn't work
  - debian/puppetmaster-passenger.postinst: Ensure upgrades from
    <= 2.7.11-1 fixup passenger apache configuration.
* Dropped upstreamed patches:
  - debian/patches/CVE-2012-1906_CVE-2012-1986_to_CVE-2012-1989.patch
  - debian/patches/puppet-12844
  - debian/patches/2.7.17-Puppet-July-2012-CVE-fixes.patch
* Drop Build-Depends on ruby-rspec (in universe):
  - debian/control: remove ruby-rspec from Build-Depends
  - debian/patches/no-rspec.patch: make Rakefile work anyway if rspec
    isn't installed so we can use it in debian/rules.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
test_name "#4123: should list all running services on Redhat/CentOS"
2
 
step "Validate services running agreement ralsh vs. OS service count"
3
 
# This will remotely exec:
4
 
# ticket_4123_should_list_all_running_redhat.sh
5
 
 
6
 
hosts.each do |host|
7
 
  if host['platform'].include?('el-')
8
 
    run_script_on(host,'acceptance-tests/tests/resource/service/ticket_4123_should_list_all_running_redhat.sh')
9
 
  else
10
 
    skip_test "Test not supported on this plaform" 
11
 
  end
12
 
end