Getting a strange problem that I have not seen before. Didn’t see in lower environment but typically only in production.
Trying to update mysql from version x to version.
level: :err
message: ‘change from 1.1.1.el7 to 1.1.2.el7 failed: Could not update: Failed
to update to version 1.1.2.el7, got version 1.1.1.el7 instead’
In terms of puppet code I have I have manifestsinit.pp with below…
$mysql_community_common=hiera('mysql_community_common')
then lower down in same init.pp
package { "mysql-community-common":
ensure => hiera('mysql_community_common')
} ->
I have a hieradatadefault.yaml file containing the actual version
mysql_community_common: “1.1.2.el7”
Any help or troubleshooting tips would be greatly appreciated.
thanks in advance