Skip to content

Commit 083f783

Browse files
Merge pull request #1338 from pmcmaw/IAC-1137/main/install-curl
(IAC-1137) Ensure curl package is installed for xtrabackup tests
2 parents 76cd48f + c4f9d1f commit 083f783

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

spec/acceptance/mysql_backup_spec.rb

+1
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,7 @@ class { 'mysql::server': root_password => 'password' }
160160
}
161161
ensure_packages('gnupg')
162162
ensure_packages('gnupg2')
163+
ensure_packages('curl')
163164
ensure_packages('percona-release',{
164165
ensure => present,
165166
provider => 'dpkg',

spec/spec_helper_acceptance_local.rb

-2
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,6 @@ def mysql_version
2727
if os[:family] == 'debian' || os[:family] == 'ubuntu'
2828
# needed for the puppet fact
2929
LitmusHelper.instance.apply_manifest("package { 'lsb-release': ensure => installed, }", expect_failures: false)
30-
# needed for percona xtra backup
31-
LitmusHelper.instance.apply_manifest("package { 'curl': ensure => installed, }", expect_failures: false)
3230
end
3331
# needed for the grant tests, not installed on el7 docker images
3432
LitmusHelper.instance.apply_manifest("package { 'which': ensure => installed, }", expect_failures: false)

0 commit comments

Comments
 (0)