Skip to content

Commit

Permalink
Merge pull request #1361 from rileynewton/merge-3.x
Browse files Browse the repository at this point in the history
(maint) Merge 3.x into main
  • Loading branch information
jonathannewman committed Aug 18, 2023
2 parents ba16888 + db4e31b commit fc02338
Show file tree
Hide file tree
Showing 9 changed files with 13 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
confine(:to, :platform => ['el', 'sles'])

#Init
master_platform = fact_on(master, 'osfamily')
master_platform = fact_on(master, 'os.family')
r10k_fqp = get_r10k_fqp(master)

#Verification
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
confine(:to, :platform => ['el', 'sles'])

#Init
master_platform = fact_on(master, 'osfamily')
master_platform = fact_on(master, 'os.family')
env_path = on(master, puppet('config print environmentpath')).stdout.rstrip
r10k_fqp = get_r10k_fqp(master)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
confine(:to, :platform => ['el', 'sles'])

#Init
master_platform = fact_on(master, 'osfamily')
master_platform = fact_on(master, 'os.family')
r10k_fqp = get_r10k_fqp(master)

case master_platform
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@

if ENV['GIT_PROVIDER'] == 'shellgit'
skip_test('Skipping test because removing Git from the system affects other "shellgit" tests.')
elsif fact_on(master, 'osfamily') == 'RedHat' and fact_on(master, "operatingsystemmajrelease").to_i < 6
elsif fact_on(master, 'os.family') == 'RedHat' and fact_on(master, "os.release.major").to_i < 6
skip_test('This version of EL is not supported by this test case!')
end

#Init
master_platform = fact_on(master, 'osfamily')
master_platform = fact_on(master, 'os.family')
master_certname = on(master, puppet('config', 'print', 'certname')).stdout.rstrip
env_path = on(master, puppet('config print environmentpath')).stdout.rstrip
r10k_fqp = get_r10k_fqp(master)
Expand Down Expand Up @@ -87,7 +87,7 @@
if master_platform == 'RedHat'
on(master, 'yum remove -y git')
elsif master_platform == 'Debian'
if fact_on(master, "operatingsystemmajrelease") == '10.04'
if fact_on(master, "os.release.major") == '10.04'
on(master, 'apt-get remove -y git-core')
else
on(master, 'apt-get remove -y git')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@

if ENV['GIT_PROVIDER'] == 'shellgit'
skip_test('Skipping test because removing Git from the system affects other "shellgit" tests.')
elsif fact_on(master, 'osfamily') == 'RedHat' and fact_on(master, "operatingsystemmajrelease").to_i < 6
elsif fact_on(master, 'os.family') == 'RedHat' and fact_on(master, "os.release.major").to_i < 6
skip_test('This version of EL is not supported by this test case!')
end

#Init
master_platform = fact_on(master, 'osfamily')
master_platform = fact_on(master, 'os.family')
master_certname = on(master, puppet('config', 'print', 'certname')).stdout.rstrip
env_path = on(master, puppet('config print environmentpath')).stdout.rstrip
r10k_fqp = get_r10k_fqp(master)
Expand Down Expand Up @@ -86,7 +86,7 @@
if master_platform == 'RedHat'
on(master, 'yum remove -y git')
elsif master_platform == 'Debian'
if fact_on(master, "operatingsystemmajrelease") == '10.04'
if fact_on(master, "os.release.major") == '10.04'
on(master, 'apt-get remove -y git-core')
else
on(master, 'apt-get remove -y git')
Expand Down
2 changes: 1 addition & 1 deletion integration/tests/git_source/git_source_git.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

confine(:to, :platform => 'el')

if fact_on(master, "operatingsystemmajrelease").to_i < 6
if fact_on(master, "os.release.major").to_i < 6 || fact_on(master, "os.release.major").to_i > 8
skip_test('This version of EL is not supported by this test case!')
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
require 'r10k_utils'
test_name 'CODEMGMT-86 - C59265 - Attempt to Deploy Environment to Disk with Insufficient Free Space'

if fact_on(master, 'osfamily') == 'RedHat' and fact_on(master, "operatingsystemmajrelease").to_i < 6
if fact_on(master, 'os.family') == 'RedHat' and fact_on(master, "os.release.major").to_i < 6
skip_test('This version of EL is not supported by this test case!')
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require 'master_manipulator'
test_name 'CODEMGMT-62 - C59239 - Single Environment with 10,000 Files'

if fact_on(master, 'osfamily') == 'RedHat' and fact_on(master, "operatingsystemmajrelease").to_i < 6
if fact_on(master, 'os.family') == 'RedHat' and fact_on(master, "os.release.major").to_i < 6
skip_test('This version of EL is not supported by this test case!')
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require 'master_manipulator'
test_name 'CODEMGMT-62 - C59242 - Single Environment with Large Binary Files'

if fact_on(master, 'osfamily') == 'RedHat' and fact_on(master, "operatingsystemmajrelease").to_i < 6
if fact_on(master, 'os.family') == 'RedHat' and fact_on(master, "os.release.major").to_i < 6
skip_test('This version of EL is not supported by this test case!')
end

Expand Down

0 comments on commit fc02338

Please sign in to comment.