diff --git a/modules/liufs/manifests/users.pp b/modules/liufs/manifests/users.pp index c7e7fb00fddcdddf88cdd15c923066f7dc22e5e8..c69f1991bf3b3c7fdc15df162475c5800f5f98d2 100644 --- a/modules/liufs/manifests/users.pp +++ b/modules/liufs/manifests/users.pp @@ -25,10 +25,10 @@ class liufs::users { plugin => 'auth_socket' } mysql_grant { 'hugo@localhost/*.*': - require => Mysql_User['hugo@localhost'], + require => Mysql_User['hugo@localhost'], privileges => [ 'SELECT', ], - user => 'hugo@localhost', - table => '*.*', + user => 'hugo@localhost', + table => '*.*', } user { 'green': @@ -60,15 +60,15 @@ class liufs::users { plugin => 'auth_socket' } mysql_grant { 'fabian@localhost/*.*': - require => Mysql_User['fabian@localhost'], + require => Mysql_User['fabian@localhost'], privileges => [ 'SELECT', ], - user => 'fabian@localhost', - table => '*.*', + user => 'fabian@localhost', + table => '*.*', } mysql_grant { 'fabian@localhost/wp-liufs.*': - require => Mysql_User['fabian@localhost'], + require => Mysql_User['fabian@localhost'], privileges => [ 'ALL' ], - user => 'fabian@localhost', - table => 'wp-liufs.*', + user => 'fabian@localhost', + table => 'wp-liufs.*', } }