Toshio Kuratomi
457dfb3b4b
Add an internal param instructing synchronize to replace localhost with the host that's being ssh'd from
2016-12-08 11:24:01 -05:00
Yair Fried
63a0b99b6a
Fix glance_client module
...
Wrong variable name.
2016-12-08 11:24:01 -05:00
Graham Ullrich
61ac748bad
Update django_manage documentation
...
As of Ansible 2.x, invocation of Django's ```manage.py``` requires a valid "shebang". Additionally, ```manage.py``` must be executable.
The old invocation was hardcoded as ```python manage.py ...``` while the new invocation is ```./manage.py ...```. See [this PR](https://github.com/ansible/ansible-modules-core/pull/1165 ).
This change allows more flexibility for which Python interpreter is invoked, but breaks existing deployment when ```manage.py``` is not properly configured. This documentation update adds a note explaining the new requirements for ```manage.py```.
2016-12-08 11:24:01 -05:00
Matt Martz
9e686c7294
Add note about precautions of using become with fetch. Addresses https://github.com/ansible/ansible/issues/14064
2016-12-08 11:24:01 -05:00
Toshio Kuratomi
b6ff36bed3
Fix documentation build in hostname
2016-12-08 11:24:01 -05:00
Toshio Kuratomi
5e4fe92676
Fix documentation build
2016-12-08 11:24:01 -05:00
Toshio Kuratomi
5f35d0d597
Document that synchronize in 2.0.0.x has broken sudo behaviour.
...
Part of the changes for #13825
2016-12-08 11:24:01 -05:00
Toshio Kuratomi
f4c9c4596f
Fix for yum's use of rpm with non English locales
...
Depends upon https://github.com/ansible/ansible/pull/14025
Fixes https://github.com/ansible/ansible/issues/13996
Fixes https://github.com/ansible/ansible/issues/13975
2016-12-08 11:24:00 -05:00
techraf
896dcd9787
Fixed typo in example playbook
2016-12-08 11:24:00 -05:00
Brian Coca
a0204b80dc
tabs are bad
2016-12-08 11:24:00 -05:00
Julia Kreger
060e12a2d3
Add wait support to os_ironic_node
...
Add support for the os_ironic_node module to be capible of waiting
until the baremetal node activation or deactivation has completed.
2016-12-08 11:24:00 -05:00
Tom Bamford
68f76c50d8
Remove explicit region parameter from ec2_ami_find
2016-12-08 11:24:00 -05:00
David Shrewsbury
f6d6895ce9
Add purge option to os_floating_ip module
...
Add the ability to completely delete a floating IP from the pool
when disassociating it from a server. When state is absent and
purge is true, the IP will be completely deleted. The default
keeps the current behavior, which is to only disassociate the IP
from the server.
2016-12-08 11:24:00 -05:00
Lee H
8e84ba71ae
- fix check_mode test to avoid errors
...
- correct test mode check to ensure it returns and doesnt apply changes
(via jmainguy)
2016-12-08 11:24:00 -05:00
David Shrewsbury
aed44e8886
Fix OpenStack module failure output
...
The exception message, when shade fails, will contain much more
specific information about the failure if the exception is treated
as a string. The 'message' attribute alone is usually not helpful.
2016-12-08 11:24:00 -05:00
Ben Visser
18ff22348a
fixed grammatical issue in iam.py. exit -> exist.
2016-12-08 11:24:00 -05:00
Hiroaki Nakamura
f2246deaf9
Doc: Add NOTE about hostname modules does not modify /etc/hosts
2016-12-08 11:24:00 -05:00
Evgeny Vereshchagin
8f23e54a80
apt-key: convert ids to the 'short' format
...
Fixes:
$ ansible all -m apt_key -a 'state=present id=7A82B743B9B8E46F12C733FA4759FA960E27C0A6 keyserver=hkp://keyserver.ubuntu.com:80' --sudo
127.0.0.1 | SUCCESS => {
"changed": true
}
$ ansible all -m apt_key -a 'state=absent id=7A82B743B9B8E46F12C733FA4759FA960E27C0A6' --sudo
127.0.0.1 | SUCCESS => {
"changed": false
}
$ apt-key export 7A82B743B9B8E46F12C733FA4759FA960E27C0A6
-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: GnuPG v1
...
See https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1481871
2016-12-08 11:24:00 -05:00
techraf
7d09792758
Added 'backup' parameter to get_url module
2016-12-08 11:24:00 -05:00
Yoichi Imai
b9b08666f5
Fix iam_policy pdoc variable
2016-12-08 11:24:00 -05:00
Thomas Quinot
ef3308159f
Allow cron_file to be an absolute path
...
Support specifying an absolute path (typically /etc/crontab) rather than
a path relative to /etc/cron.d, to allow modifying the main system crontab.
Particularly useful for target systems that have /etc/crontab but no
/etc/cron.d.
2016-12-08 11:24:00 -05:00
Michael Scherer
519e699b98
Split a shell snippet in 2 to avoid using use_unsafe_shell=True
...
Since use_unsafe_shell is suspicious from a security point
of view (or it wouldn't be unsafe), the less we have, the less
code we have to toroughly inspect for a security audit.
In this case, the '&&' can be replaced by doing 2 calls to run_command.
2016-12-08 11:24:00 -05:00
Jason Paige
a2f4d46c9b
updating choices for rds parameter engines
2016-12-08 11:24:00 -05:00
Aaron Kurtz
e3782689bc
Remove 'cache_table' from required params
...
Starting in Django 1.7, the createcachetable command looks for cache
table names in the CACHES settings dictionary, so cache_table is no
longer required, but is still allowed.
2016-12-08 11:23:59 -05:00
Bermudez, Jaime
efbdea909e
Simplify logic around "present" state and skip dupes. If the policy doesn't exist or the policy document doesn't match or if we're not skipping dupes, then we go ahead and update the respective user/group/role policy.
2016-12-08 11:23:59 -05:00
daniel-sc
f654bd45f8
Allowing specifying ip by address
2016-12-08 11:23:59 -05:00
daniel-sc
40565b7293
Allowing to specify specific external ip for gce instances
2016-12-08 11:23:59 -05:00
Albert Mikaelyan
a61095b0b1
Update yum.py
2016-12-08 11:23:59 -05:00
Vladimir Mihailenco
2bdfea4a43
rackspace: set headers when uploading files to CF.
...
Otherwise CDN (Akamai) downloads file without the headers. The sequence
is following:
1. Ansible uploads file to CF.
2. Akamai downloads the file and caches it in CDN.
3. Ansible sets headers.
As a result Akamai serves file without headers.
This is backwards incompatible change, because headers keys are not
prefixed with `x-object-meta-`. Which allows user to set headers like
`Access-Control-Allow-Origin`.
2016-12-08 11:23:59 -05:00
bobgroves
18d4a33891
Makes rax_dns_record override default to true
2016-12-08 11:23:59 -05:00
bobgroves
65697dea14
Adds overwrite option to rax_dns_record
2016-12-08 11:23:59 -05:00
Jordan Bach
b6213ffa80
git: set remote branch before switching versions when using depth argument
2016-12-08 11:23:59 -05:00
Luca Berruti
0673a4919f
cron module: add enviroment variables management
2016-12-08 11:23:59 -05:00
Henrique Rodrigues
c2e62ed9a9
Fix misspelling of the word 'certificate'
2016-12-08 11:23:59 -05:00
Brian Coca
b25c2a4261
added note about awslogs version added
2016-12-08 11:23:59 -05:00
Brian Coca
6e73c61298
added version_added
2016-12-08 11:23:59 -05:00
Constantin07
f36c567022
Added delete_on_termination option for volume attachment
2016-12-08 11:23:59 -05:00
Matt Ferrante
2dd53a8d91
updated s3 module documentation
2016-12-08 11:23:59 -05:00
jefferson fermo
9d9daeb73c
add awslog option in docker log driver. this option is available starting with ansible 2.1
2016-12-08 11:23:59 -05:00
Brian Coca
4c6515e299
reverse order of cron commands
...
does not affect linux but fixes issue with busybox caring about order
fixes #2807
2016-12-08 11:23:58 -05:00
nitzmahone
821fb6c0ab
fix win_get_url var renames ala xpicio fix PR #2378
...
reimplements #2378 sans formatting merge conflicts
2016-12-08 11:23:58 -05:00
Jeroen Seegers
7be08b00b0
Update cron.py
...
Minor update to documentation for the cron module to reflect the required "name" parameter when the value of "state" is "absent".
2016-12-08 11:23:58 -05:00
Brian Coca
f50fbe9dd2
updated s3 docs to reflect mode choices
...
fixes #2318
2016-12-08 11:23:58 -05:00
autotune
90631aef1b
1113 fix ec2 subnet tags
2016-12-08 11:23:58 -05:00
nitzmahone
fef6e5102e
fix version_added on win_msi wait arg
2016-12-08 11:23:58 -05:00
Brian Coca
a5e4969dc4
updated version_added
2016-12-08 11:23:58 -05:00
Joost Cassee
267dcc8eb6
Add wait_timeout option to route53 module
...
This option is used to make sure the module does not block forever.
2016-12-08 11:23:58 -05:00
Joost Cassee
e91bcba078
Add wait option to route53 module
...
This option makes the module wait for the changes to replicate to all
Amazon DNS servers.
2016-12-08 11:23:58 -05:00
Mark van Driel
a24cdbe15e
Fixed "invalid privileges string: set expected at most 1 arguments, got 2"
2016-12-08 11:23:58 -05:00
Jonathan Mainguy
e9a752f769
add ansi support
2016-12-08 11:23:58 -05:00