- 12 Feb, 2014 3 commits
-
-
The SET GLOBAL statement requires properly quoting of values. For example, the following correct queries will fail if quotes are toggled: mysql> SET GLOBAL innodb_lru_scan_depth = 2000; mysql> SET GLOBAL master_info_repository = "TABLE"; `mysql_variable` module doesn't quote the value argument, therefore string values will fail. # this task will pass, 2000 is passed without quotes - name: set a numeric value mysql_variable: variable=innodb_lru_scan_depth value=2000 # this task will fail, TABLE is passed without quotes - name: set a string value mysql_variable: variable=master_info_repository value=TABLE With this patch prepared statements are used. Proper quoting will be done automatically based on the type of the variables thus an attempt to convert to int, then to float is done in first place. Booleans values, ie: ON, OFF, are not specially handled because they can be quoted. For example, the following queries are correct and equivalent, they all set _innodb_file_per_table_ to logical _True_: mysql> SET GLOBAL innodb_file_per_table = "ON"; mysql> SET GLOBAL innodb_file_per_table = ON; mysql> SET GLOBAL innodb_file_per_table = 1; Tested in mysql 5.5 and 5.6.
Maykel Moya committed -
Allow hacking/env-setup module path to use config file library path
Michael DeHaan committed -
hacking/env-setup now adds the configured library path in ANSIBLE_CONFIG to the ANSIBLE_LIBRARY environment variable in addition to the previous default of ANSIBLE_HOME/library. This replaces #5950.
willthames committed
-
- 11 Feb, 2014 10 commits
-
-
rax_facts and rax_keypair modules: update docs
Michael DeHaan committed -
Matt Martz committed
-
Fixes #4821
James Cammarata committed -
James Cammarata committed
-
rax module: Don't set a default for disk_config
jctanner committed -
James Tanner committed
-
Add some notes on installing on FreeBSD
Michael DeHaan committed -
James Tanner committed
-
James Tanner committed
-
Fix various typos in markdown documentation
Michael DeHaan committed
-
- 10 Feb, 2014 11 commits
-
-
John Barker committed
-
Matt Martz committed
-
Fix typos in ISSUE_TEMPLATE.md
jctanner committed -
Fixes #5399
James Cammarata committed -
John Barker committed
-
Could perhaps be expanded with more prose, but this will do for a start.
Steve Wills committed -
James Cammarata committed
-
James Cammarata committed
-
Fix typo in CODING_GUIDELINES.md
Michael DeHaan committed -
satoru committed
-
- 09 Feb, 2014 7 commits
-
-
Improve ec2 module docs
Michael DeHaan committed -
Change reference to open 'intranet' to 'internet'
Michael DeHaan committed -
Include all man pages in Arch Linux package.
Michael DeHaan committed -
Fix Linode inventory plugin causing a Chube exception when attempting to obtain information on a specific Linode host
Michael DeHaan committed -
Aaron Rice committed
-
While we're on it, change $pkgdesc to follow its counterpart from official repositories. Additionally don't install RELEASES.txt and CONTRIBUTING.md; there is little use for them from the user's perspective.
Bartłomiej Piotrowski committed -
The Internet is being referred to, but the documentation uses the word 'intranet'.
Jeff Geerling committed
-
- 08 Feb, 2014 8 commits
-
-
add missing ' in Linode documentation
Michael DeHaan committed -
Refining the fix made in #5885. Merging this quickly after PR as further testing of of earlier fix demonstrated flaws. Those flaws are now removed and tested to be removed.
Richard Isaacson committed -
It turns out that some of the assumptions in #5885 were slightly off. The previous fix relied on a call to the module to creat a tmp_path. This is insufficent as there are few cases that we need to have the tmp directory before we make the module call. If we don't have a tmp_path before we do a recursive call or when we find a file that does not match the remote md5 hash we need to create a tmp directory. Also we are not more percise when we will need to clean up the remote tmp_path.
Richard C Isaacson committed -
Jon Chen committed
-
This reverts commit 60d3611b.
Michael DeHaan committed -
Revert "Revert "Revert "This patch makes Ansible reuse fork allocation between seperate instantations of the runner API, therefore the overhead of recreating forks""" This reverts commit 73ca1a17.
Michael DeHaan committed -
Revert "While the previous work on the foon class can't be quite recycled, it's still a nice abstraction." This reverts commit caab52ae.
Michael DeHaan committed -
Michael DeHaan committed
-
- 07 Feb, 2014 1 commit
-
-
Revert "Revert "This patch makes Ansible reuse fork allocation between seperate instantations of the runner API, therefore the overhead of recreating forks"" This reverts commit 6685b498.
Michael DeHaan committed
-