Skip to content

Commit

Permalink
Last-minute bug fix for Percona (THANKS PERCONA!)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeff George committed Oct 18, 2016
1 parent 1f2b0d8 commit 9015db7
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions puppet/precip/manifests/database.pp
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,25 @@
require => File['/etc/mysql'],
}

# New Keys for Percona Server
apt::key { 'percona':
id => '430BDF5C56E7C94E848EE60C1C4CBDCDCD2EFD2A',
server => 'keyserver.ubuntu.com',
}

apt::key { 'percona-packaging':
id => '4D1BB29D63D98E422B2113B19334A25F8507EFA5',
server => 'keyserver.ubuntu.com',
}

# Define the Percona apt repo
apt::source { 'Percona':
location => 'http://repo.percona.com/apt',
repos => 'main',
key => {
'id' => '430BDF5C56E7C94E848EE60C1C4CBDCDCD2EFD2A',
'server' => 'keys.gnupg.net',
},
location => 'http://repo.percona.com/apt',
repos => 'main',
require => [
Apt::Key['percona'],
Apt::Key['percona-packaging']
]
}

class { 'mysql::client':
Expand Down

0 comments on commit 9015db7

Please sign in to comment.