Skip to content

Commit

Permalink
Merge pull request #665 from mhaskel/lint_fixes
Browse files Browse the repository at this point in the history
lint cleanup
  • Loading branch information
hunner committed Feb 9, 2015
2 parents b9fbba3 + 2635469 commit 8397805
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions manifests/server/account_security.pp
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@
}
if ($::fqdn != 'localhost.localdomain') {
mysql_user {
[ "[email protected]",
"@localhost.localdomain"]:
[ '[email protected]',
'@localhost.localdomain']:
ensure => 'absent',
require => Anchor['mysql::server::end'],
}
Expand Down
8 changes: 4 additions & 4 deletions tests/mysql_plugin.pp
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
}

mysql::plugin{ 'validate_password':
ensure => present,
soname => $::osfamily ? {
ensure => present,
soname => $::osfamily ? {
windows => 'validate_password.dll',
default => 'validate_password.so'
}
}

mysql::plugin{ 'auth_socket':
ensure => present,
soname => $::osfamily ? {
ensure => present,
soname => $::osfamily ? {
windows => 'auth_socket.dll',
default => 'auth_socket.so'
}
Expand Down
4 changes: 2 additions & 2 deletions tests/mysql_user.pp
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
}

mysql_user{ 'socketplugin@%':
ensure => present,
plugin => 'unix_socket',
ensure => present,
plugin => 'unix_socket',
}

mysql_user{ 'socketplugin@%':
Expand Down

0 comments on commit 8397805

Please sign in to comment.