From 2635469f0b26753d4d32e59ee4fac4cce26cf1ad Mon Sep 17 00:00:00 2001 From: Morgan Haskel Date: Mon, 9 Feb 2015 15:30:55 -0800 Subject: [PATCH] lint cleanup --- manifests/server/account_security.pp | 4 ++-- tests/mysql_plugin.pp | 8 ++++---- tests/mysql_user.pp | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/manifests/server/account_security.pp b/manifests/server/account_security.pp index 68f6e8526..07bdf0133 100644 --- a/manifests/server/account_security.pp +++ b/manifests/server/account_security.pp @@ -9,8 +9,8 @@ } if ($::fqdn != 'localhost.localdomain') { mysql_user { - [ "root@localhost.localdomain", - "@localhost.localdomain"]: + [ 'root@localhost.localdomain', + '@localhost.localdomain']: ensure => 'absent', require => Anchor['mysql::server::end'], } diff --git a/tests/mysql_plugin.pp b/tests/mysql_plugin.pp index ab76fc266..0a27788dc 100644 --- a/tests/mysql_plugin.pp +++ b/tests/mysql_plugin.pp @@ -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' } diff --git a/tests/mysql_user.pp b/tests/mysql_user.pp index 893a03e31..c47186866 100644 --- a/tests/mysql_user.pp +++ b/tests/mysql_user.pp @@ -21,8 +21,8 @@ } mysql_user{ 'socketplugin@%': - ensure => present, - plugin => 'unix_socket', + ensure => present, + plugin => 'unix_socket', } mysql_user{ 'socketplugin@%':