Fixed mysql::client for Ubuntu.

This commit is contained in:
Timo Mkinen 2013-04-19 12:29:14 +03:00
parent e04178d0e3
commit 611fdd6b81

View file

@ -5,6 +5,10 @@ class mysql::client {
package { "mysql":
ensure => installed,
name => $::operatingsystem ? {
"ubuntu" => "mysql-client",
default => "mysql",
},
}
}