Files
trove-integration/scripts/files/elements/ubuntu-pxc/install.d/30-mysql
Andrew Bramley c4a9a0f1f0 Fix percona-xtrabackup issue with backup tests
It appears that a recent new version of
percona-xtrabackup has broken the backup tests.

This fix pins the version of xtrabackup to 2.2

Change-Id: I5e838b60dd5c9d7254c6a2c1177257bcd9f6da73
Closes-Bug:#1509551
2015-10-25 09:20:57 -04:00

15 lines
349 B
Bash
Executable File

#!/bin/sh
# CONTEXT: GUEST during CONSTRUCTION as ROOT
# PURPOSE: Install controller base required packages
set -e
set -o xtrace
export DEBIAN_FRONTEND=noninteractive
apt-get -y install percona-xtradb-cluster-server percona-xtrabackup-22
# Don't auto start mysql (we'll start it up in guest)
update-rc.d mysql defaults
update-rc.d mysql disable