- 16 Mar, 2014 1 commit
-
-
timeit shows a speedup of ~3x on Python 2.7.5 x86_64. It also makes the code a bit shorter.
Cristian Ciupitu committed
-
- 14 Jan, 2014 1 commit
-
-
David Busby committed
-
- 02 Dec, 2013 2 commits
-
-
James Tanner committed
-
James Tanner committed
-
- 28 Nov, 2013 2 commits
-
-
Revert "No longer need to reference 'version_added' in docs for these, as this was quite a while ago." This reverts commit ff0a41d4.
Michael DeHaan committed -
Michael DeHaan committed
-
- 18 Oct, 2013 1 commit
-
-
James Tanner committed
-
- 11 Oct, 2013 1 commit
-
-
Michael DeHaan committed
-
- 03 Oct, 2013 1 commit
-
-
This adds the privileges given to the existing list of privileges instead of overwriting any existing ones.
Jeroen Hoekx committed
-
- 06 Sep, 2013 2 commits
-
-
James Cammarata committed
-
database names.
John Hamelink committed
-
- 05 Sep, 2013 1 commit
-
-
Tom Dymond committed
-
- 29 Jul, 2013 1 commit
-
-
Stoned Elipot committed
-
- 23 Jul, 2013 1 commit
-
-
When revoking privileges from a user, the GRANT OPTION is always revoked, even if the user doesn't have it. If the user exists, this doesn't give an error, but if the user doesn't exist, it does: mysql> GRANT ALL ON test.* TO 'test'@'localhost'; Query OK, 0 rows affected (0.00 sec) mysql> REVOKE GRANT OPTION ON test.* FROM 'test'@'localhost'; Query OK, 0 rows affected (0.00 sec) mysql> REVOKE GRANT OPTION ON test.* FROM 'test'@'localhost'; Query OK, 0 rows affected (0.00 sec) mysql> REVOKE ALL ON test.* FROM 'test'@'localhost'; Query OK, 0 rows affected (0.00 sec) mysql> REVOKE GRANT OPTION ON test.* FROM 'test'@'localhost'; ERROR 1141 (42000): There is no such grant defined for user 'test' on host 'localhost' Additionally, in MySQL 5.6 this breaks replication because of http://bugs.mysql.com/bug.php?id=68892. Rather than revoking the GRANT OPTION and catching the error, check if the user actually has it and only revoke it when he does.
Stijn Tintel committed
-
- 20 Jul, 2013 1 commit
-
-
Michael DeHaan committed
-
- 01 Jul, 2013 1 commit
-
-
Andrew de Quincey committed
-
- 15 Jun, 2013 1 commit
-
-
Migrated all examples: in DOCUMENTATION=''' string to standalone EXAMPLES=''' string Added deprecation warning to moduledev.rst and remove deprecated example from it Fixed up a few typos and uppercased some acronyms. add consistency to how EXAMPLES are formatted
Jan-Piet Mens committed
-
- 11 Jun, 2013 1 commit
-
-
In MySQL 5.6, the root account created by default during MySQL installation has the PROXY ... WITH GRANT OPTION privilege for ''@'', that is, for all users. The mysql_user module tries to revoke this privilege, but this fails: _mysql_exceptions.ProgrammingError: (1064, "You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near '''@'' FROM 'root'@'localhost'' at line 1") Quick fix: don't revoke privilege if user is root and the privilege to revoke contains PROXY.
Stijn Tintel committed
-
- 28 Apr, 2013 1 commit
-
-
Michael DeHaan committed
-
- 25 Mar, 2013 1 commit
-
-
Remove leading/trailing single or double quotes when parsing the my.cnf file in mysql_user and mysql_db. Do this so that these modules parse the my.cnf file the same way that the mysql client does. From: http://dev.mysql.com/doc/refman/5.0/en/option-files.html You can optionally enclose the value within single quotation marks or double quotation marks, which is useful if the value contains a “#” comment character. Fixes #2405
Lorin Hochstein committed
-
- 15 Mar, 2013 2 commits
-
-
mysql_user and mysql_db both take a login_unix_socket option. This patch adds docs that describe how to use it.
Lorin Hochstein committed -
When using a .my.cnf file, when there is no user variable defined, default to the login user. This change has the mysql_user module behavior match the behavior of the mysql command-line client. Also adds an example .my.cnf to the docs.
Lorin Hochstein committed
-
- 01 Mar, 2013 1 commit
-
-
Michael DeHaan committed
-
- 28 Feb, 2013 2 commits
-
-
Mark Theunissen committed
-
Mark Theunissen committed
-
- 26 Feb, 2013 1 commit
-
-
Mark Theunissen committed
-
- 22 Feb, 2013 2 commits
-
-
Till Maas committed
-
According to the MySQL docs[0] the password should be stored after 'password=' instead of 'pass='. [0] http://dev.mysql.com/doc/refman/5.1/en/password-security-user.html
Till Maas committed
-
- 16 Feb, 2013 1 commit
-
-
Blair Zajac committed
-
- 19 Nov, 2012 1 commit
-
-
Michael DeHaan committed
-
- 15 Nov, 2012 1 commit
-
-
Fix for #1577 (python 2.4 compliance for mysql_user), tested only for syntax, please exercise MySQL fans!
Michael DeHaan committed
-
- 09 Nov, 2012 1 commit
-
-
Yvan Cottyn committed
-
- 31 Oct, 2012 1 commit
-
-
Michael DeHaan committed
-
- 24 Oct, 2012 2 commits
-
-
- proper checking for with grant option (if this is not the only option the user has) - added revoking of grant option
Stijn Opheide committed -
Stijn Opheide committed
-
- 23 Oct, 2012 1 commit
-
-
- added terse syntax to modules.rst - added description of special variables to template module
Jan-Piet Mens committed
-
- 01 Oct, 2012 1 commit
-
-
Jan-Piet Mens committed
-
- 30 Sep, 2012 1 commit
-
-
- .rst now supresses default if none is set (looks better in HTML) - .rst now handles empty options list - Fixed postgresql_user and mysql_user because YAML contained colons - docs for facter
Jan-Piet Mens committed
-
- 29 Sep, 2012 1 commit
-
-
Marco Vito Moscaritolo committed
-
- 03 Aug, 2012 1 commit
-
-
Ingo Gottwald committed
-