Skip to content

Commit

Permalink
Updating requires on Percona to explicitly ensure the source is there…
Browse files Browse the repository at this point in the history
… before installing
  • Loading branch information
Jeff George committed Jan 18, 2016
1 parent c4579f6 commit 963dfd4
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions puppet/precip/manifests/database.pp
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
class { 'mysql::client':
package_name => 'percona-server-client-5.5',
package_ensure => 'latest',
require => [
Apt::Source['Percona'],
]
}

class { 'mysql::server':
Expand All @@ -41,6 +44,9 @@
'log_error' => '/vagrant/log/mysql_error.log'
}
},
require => [
Apt::Source['Percona'],
]
}

mysql_user { 'root@%':
Expand Down

0 comments on commit 963dfd4

Please sign in to comment.