Skip to content

Commit

Permalink
add support for 2.4.x
Browse files Browse the repository at this point in the history
add trailing comma
  • Loading branch information
jackdpeterson committed Jan 12, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent eba9b96 commit 2b114e1
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions manifests/params.pp
Original file line number Diff line number Diff line change
@@ -66,6 +66,16 @@
'server' => 'keyserver.ubuntu.com',
},
}
$repo24 = {
comment => 'ProxySQL 2.4.x APT repository',
location => "http://repo.proxysql.com/ProxySQL/proxysql-2.4.x/${facts['os']['distro']['codename']}/",
release => './',
repos => '',
key => {
'id' => '1448BF693CA600C799EB935804A562FB79953B49',
'server' => 'keyserver.ubuntu.com',
},
}
}
'RedHat': {
$package_provider = 'rpm'
@@ -114,6 +124,14 @@
gpgcheck => true,
gpgkey => 'http://repo.proxysql.com/ProxySQL/repo_pub_key',
}
$repo24 = {
name => 'proxysql_2_4',
descr => 'ProxySQL 2.4.x YUM repository',
baseurl => "http://repo.proxysql.com/ProxySQL/proxysql-2.4.x/centos/${repo_os_major_version}",
enabled => true,
gpgcheck => true,
gpgkey => 'http://repo.proxysql.com/ProxySQL/repo_pub_key',
}
}
default: {
fail("osfamily ${facts['os']['family']} is not supported")

0 comments on commit 2b114e1

Please sign in to comment.