summaryrefslogtreecommitdiffstats
path: root/acceptance/tests/resource/service/ticket_4123_should_list_all_running_redhat.rb
blob: b4c2bc14d3eb237c472db0ebdc57e53287168d72 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
test_name "#4123: should list all running services on Redhat/CentOS"
step "Validate services running agreement ralsh vs. OS service count"
# This will remotely exec:
# ticket_4123_should_list_all_running_redhat.sh

hosts.each do |host|
  unless host['platform'].include? 'centos' or host['platform'].include? 'redhat'
    skip_test "Test not supported on this plaform" 
  else
    run_script_on(host,'tests/acceptance/resource/service/ticket_4123_should_list_all_running_redhat.sh')
  end
end