- 02 Apr, 2014 27 commits
-
-
Andrew Resch committed
-
Michael DeHaan committed
-
Michael DeHaan committed
-
git://github.com/tyll/ansibleMichael DeHaan committed
-
Michael DeHaan committed
-
Clarify the port value always defaults to 3306
Michael DeHaan committed -
Michael DeHaan committed
-
Michael DeHaan committed
-
debconf detail requirements and fix typos
Michael DeHaan committed -
Remove extra quote from the mysqldump password argument
Michael DeHaan committed -
ssh connection plugin: Make comments more verbose
Michael DeHaan committed -
Fix the default url of get_xml function.
Michael DeHaan committed -
Michael DeHaan committed
-
Fixes #6800
James Cammarata committed -
Fixes #6822
James Cammarata committed -
Fixes #6806
James Cammarata committed -
debconf correctly quote strings
Michael DeHaan committed -
Also adds an integration test for authorized_key for future validation. Fixes #6700
James Cammarata committed -
John Barker committed
-
James Tanner committed
-
redhat_subscription calls AnsibleModule() without argument_spec
Michael DeHaan committed -
Fixed cwd for submodules update
Michael DeHaan committed -
Oleg A. Mamontov committed
-
James Cammarata committed
-
Fixes #6455
James Cammarata committed
-
- 01 Apr, 2014 11 commits
-
-
James Cammarata committed
-
James Cammarata committed
-
John Barker committed
-
Fix interpreter lines in a couple of modules
jctanner committed -
Matt Martz committed
-
The Rhsm object requires an AnsibleModule but it isn't created with an argument_spec and fails. Since the rhn.module is set directly after, setting None for the required argument of Rhsm fixes the module.
Andrew Resch committed -
module_retention isn't defined anywhere, including the help.
Michael DeHaan committed -
While the [boto docs](https://github.com/boto/boto/blob/develop/boto/rds/__init__.py#L253) make it seem like the default value of `port` is changed depending on the engine chosen, AFAICT from looking at the code the default value is never changed from 3306. I think the docs are intended to be read as "the default value used by <engine> is <port> so you should change `port` to that value". If you don't specify the port value and chose the database engine as PostgreSQL you'll end up with a PostgreSQL instance running on port 3306.
follower committed -
The mysqldb Ansible module will fail if the state specified is import or dump with a '1045: Access Denied' mysql error for complex passwords. This is caused by the extra quote around the '--password' argument to mysqldump, as pipes.quotes already quotes the password string. >>> "--password='%s'" % pipes.quote('simple') "--password='simple'" >>> "--password='%s'" % pipes.quote('c0mplexp@ssword!') "--password=''c0mplexp@ssword!''" >>> "--password='%s'" % pipes.quote('password with space') "--password=''password with space''"
Chao Luan committed -
jjshoe committed
-
Explain _communicate() more.
Till Maas committed
-
- 31 Mar, 2014 2 commits
-
-
Disclosure policy should really be up here, so fixing that.
Michael DeHaan committed -
James Tanner committed
-