view modules/mysql/examples/mysqltuner.pp @ 482:d83de9b3a62b default tip

Update hiera.yaml within Puppet config Forgot that we manage it from here. Now has content to match new packages
author IBBoard <dev@ibboard.co.uk>
date Fri, 30 Aug 2024 16:10:36 +0100
parents 668df4711671
children
line wrap: on
line source

# @summary
#   Manage the MySQLTuner package.

$version = 'v1.3.0'

file { '/usr/local/bin/mysqltuner':
  ensure => 'file',
  owner  => 'root',
  group  => 'root',
  mode   => '0550',
  source => "https://github.com/major/MySQLTuner-perl/raw/${version}/mysqltuner.pl",
}