Environment :
Vagrant (VirtualBox)
Ubuntu 14
- Puppet
-Puppetlabs-mysql (https://github.com/puppetlabs/puppetlabs-mysql)
Problem:
Using puppetlabs-mysql (Version 3.6.1) I am trying to install mySQL 5.6.23 but it seems to be installing 5.5.4.
I tried setting up the property 'ensure' to '5.6' but it gave me this error:
Error: Could not update: Execution of '/usr/bin/apt-get -q -y -o DPkg::Options::=--force-confold --force-yes install mysql-server=5.6' returned 100: Reading package lists...
==> default: Building dependency tree...
==> default: Reading state information...
==> default: E: Version '5.6' for 'mysql-server' was not found
==> default:
==> default: Error: /Stage[main]/Mysql::Server::Install/Package[mysql-server]/ensure: change from purged to 5.6 failed: Could not update: Execution of '/usr/bin/apt-get -q -y -o DPkg::Options::=--force-confold --force-yes install mysql-server=5.6' returned 100: Reading package lists...
==> default: Building dependency tree...
==> default: Reading state information...
==> default: E: Version '5.6' for 'mysql-server' was not found
==> default:
What can I do to install 5.6.23 ?
Instead of
ensure
, usepackage_name
. This worked for me:If incorrect version of
mysql-client
is being installed, add this as well: