Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(IAC-1137) Ensure curl package is installed for xtrabackup tests #1338

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions spec/acceptance/mysql_backup_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,7 @@ class { 'mysql::server': root_password => 'password' }
}
ensure_packages('gnupg')
ensure_packages('gnupg2')
ensure_packages('curl')
ensure_packages('percona-release',{
ensure => present,
provider => 'dpkg',
Expand Down
2 changes: 0 additions & 2 deletions spec/spec_helper_acceptance_local.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ def mysql_version
if os[:family] == 'debian' || os[:family] == 'ubuntu'
# needed for the puppet fact
LitmusHelper.instance.apply_manifest("package { 'lsb-release': ensure => installed, }", expect_failures: false)
# needed for percona xtra backup
LitmusHelper.instance.apply_manifest("package { 'curl': ensure => installed, }", expect_failures: false)
end
# needed for the grant tests, not installed on el7 docker images
LitmusHelper.instance.apply_manifest("package { 'which': ensure => installed, }", expect_failures: false)
Expand Down