summaryrefslogtreecommitdiffstats
path: root/acceptance
diff options
context:
space:
mode:
authorDominic Maraglia <dominic@puppetlabs.com>2011-07-12 17:34:22 -0700
committerDominic Maraglia <dominic@puppetlabs.com>2011-07-12 17:34:22 -0700
commit4a2f22c00d1348aaa136f7269d2b5c65bcb54dc5 (patch)
tree8c58803e552d5c3c4fcb5588b8a5d016bccae945 /acceptance
parent8bad457fb68f8550db4c1c4802cb024c4e719d33 (diff)
downloadpuppet-4a2f22c00d1348aaa136f7269d2b5c65bcb54dc5.tar.gz
puppet-4a2f22c00d1348aaa136f7269d2b5c65bcb54dc5.tar.xz
puppet-4a2f22c00d1348aaa136f7269d2b5c65bcb54dc5.zip
(maint) Fix platform dection for RHEL
Detecting supported platform used incorrect string for RHEL. Changed string from 'redhat' to 'rhel'
Diffstat (limited to 'acceptance')
-rwxr-xr-xacceptance/tests/resource/service/ticket_4123_should_list_all_running_redhat.rb3
-rwxr-xr-xacceptance/tests/resource/service/ticket_4124_should_list_all_disabled.rb2
2 files changed, 2 insertions, 3 deletions
diff --git a/acceptance/tests/resource/service/ticket_4123_should_list_all_running_redhat.rb b/acceptance/tests/resource/service/ticket_4123_should_list_all_running_redhat.rb
index 127e943a9..9f0fdc5c7 100755
--- a/acceptance/tests/resource/service/ticket_4123_should_list_all_running_redhat.rb
+++ b/acceptance/tests/resource/service/ticket_4123_should_list_all_running_redhat.rb
@@ -4,8 +4,7 @@ step "Validate services running agreement ralsh vs. OS service count"
# ticket_4123_should_list_all_running_redhat.sh
hosts.each do |host|
- if host['platform'].include?('centos') or host['platform'].include?('redhat')
- puts "XXX #{host['platform']}"
+ if host['platform'].include?('centos') or host['platform'].include?('rhel')
run_script_on(host,'acceptance-tests/tests/resource/service/ticket_4123_should_list_all_running_redhat.sh')
else
skip_test "Test not supported on this plaform"
diff --git a/acceptance/tests/resource/service/ticket_4124_should_list_all_disabled.rb b/acceptance/tests/resource/service/ticket_4124_should_list_all_disabled.rb
index db96ad91c..13ad5ceac 100755
--- a/acceptance/tests/resource/service/ticket_4124_should_list_all_disabled.rb
+++ b/acceptance/tests/resource/service/ticket_4124_should_list_all_disabled.rb
@@ -4,7 +4,7 @@ step "Validate disabled services agreement ralsh vs. OS service count"
# ticket_4124_should_list_all_disabled.sh
hosts.each do |host|
- unless host['platform'].include? 'centos' or host['platform'].include? 'redhat'
+ unless host['platform'].include? 'centos' or host['platform'].include? 'rhel'
skip_test "Test not supported on this plaform"
else
run_script_on(host,'acceptance-tests/tests/resource/service/ticket_4124_should_list_all_disabled.sh')