A very clever co-worker managed to come with a solution.

Changing

  package {
    'mysql':
      provider => "yum",
      ensure => purged,
  }

to

  package {
    'mysql.x86-64':
      provider => "yum",
      ensure => purged,
  }

solved the problem.

I'm not sure why this works. I suspect it's because adding the ".x86-64"
somehow prevents the pattern from matching Percona. I'm going to
check this.

This approach is easier than creating a custom fact.

Thanks for all the suggestions.

Jon Forrest

--
You received this message because you are subscribed to the Google Groups "Puppet 
Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to puppet-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/puppet-users/5359D4E2.2090908%40gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to