James Cammarata
92f7aa79b0
Fix bad commit from #8095 and fix bad splitting on :'s in the image
...
Fixes #8095
Fixes #8658
10 years ago
Chris Church
90fc6c6881
Added winrm test for long-running command.
10 years ago
Will Thames
0083212704
Fix RDS AWS connection
...
Use the common AWS connection improvements so that security_token,
boto_profile etc. are taken into account
10 years ago
Lukas Wunner
677de07f44
Try optimistic chown, do not error out if not permitted to chown
...
Add unit test
10 years ago
Michael DeHaan
f4d649bea0
Merge pull request #8641 from ianmiell/imiell_docs
...
Tense correction
10 years ago
Ian Miell
340a3c68b1
Tense correction
10 years ago
Michael DeHaan
91560c00a9
Merge pull request #8627 from rghe/devel
...
fixes #8626 by reverting 0d8b81cd
10 years ago
James Cammarata
8dafacd4e9
Make env param a dict type instead of list
...
Also modifies param type checking code to remove whitespace from
around params before splitting them into k=v pairs.
Fixes #8199
10 years ago
Michael DeHaan
a230a3fad9
Merge pull request #8635 from RockinRoel/devel
...
Fix fonts in docs: Incosolata -> Inconsolata
10 years ago
Michael DeHaan
3035f2dcc8
Merge pull request #8367 from msabramo/make_pip_install_editable_work
...
Make `pip install -e` work
10 years ago
Roel Standaert
f3e951aa95
Fix fonts in docs: Incosolata -> Inconsolata
10 years ago
James Cammarata
54cbe3dcf9
Disallow args: to be specified as a string
10 years ago
James Cammarata
600a4657b4
Catch error in atomic_move when creating temporary file
...
Fixes #8480
10 years ago
James Cammarata
ee18c557ec
Load group_vars for new groups loaded via add_host
...
Fixes #8605
10 years ago
James Cammarata
b4476c238f
Use match() instead of search() for pattern matching
...
Also related to f48fa3, fix for #8614
10 years ago
James Cammarata
f48fa3759a
Fix host pattern matching and enhance error detection
...
Fixes #8614
10 years ago
rghe
9b6df6d9a8
fixes #8626 by reverting 0d8b81cd
10 years ago
James Cammarata
a01d97f12b
Fixing variable name bug introduced in ac8950f
...
Fixes #8617
10 years ago
James Cammarata
bea0845322
Fix vault_password positional args error
10 years ago
Lukas Wunner
f4053fcf3a
Only chown on atomic move if invoked as root
...
Linux and BSD derivatives do not allow unprivileged users to
"give away" files to others for security reasons. (System V
derivatives allow that but they're rare nowadays.)
10 years ago
Michael DeHaan
448c0a950e
Merge pull request #8622 from ciupicri/typo
...
Fix typo: & -> and
10 years ago
Michael DeHaan
9e0090e21b
Merge pull request #8612 from mjaschen-forks/devel
...
Homebrew module: Added `+` and `.` characters to the package name regex.
10 years ago
Michael DeHaan
1faa7ec50a
Merge pull request #8589 from huckphin/huckphin-fixSpellingWindows
...
Fix some spelling mistakes in intro_windows.rst
10 years ago
Michael DeHaan
773df2cc8a
Merge pull request #8587 from ericwb/bug/8299
...
Update keystone_user doc for tenant_description
10 years ago
Cristian Ciupitu
b6261d05b0
Fix typo: & -> and
...
`and` is the boolean operator for AND in [Python][1].
`&` is the bitwise operator for AND in [Python][2].
[1]: https://docs.python.org/2/reference/expressions.html#boolean-operations
[2]: https://docs.python.org/2/reference/expressions.html#binary-bitwise-operations
10 years ago
Marcus Jaschen
c6ac95d403
Homebrew module: Added `+` and `.` characters to the package name regex.
...
Solves installation failures for packages like `bonnie++` or
`virtualhost.sh` as described in #8413 .
10 years ago
Chad Rhyner
1c01c0c390
Fix some spelling mistakes in intro_windows.rst
10 years ago
Eric Brown
8e6c219ee9
Update keystone_user doc for tenant_description
...
The description var should be tenant_description.
Closes-bug: #8299
10 years ago
Eric Brown
5ce366c6a2
Fix the docs for glance_image.endpoint_type
...
The endpoint_type option was added in version 1.7,
so the docs need to state this. Also the the description
is too brief.
10 years ago
Michael DeHaan
9edf3a749a
Merge pull request #8580 from mpeters/ec2_inv_empty_patterns
...
Handle the case where include_pattern and exclude_pattern exist but are empty strings
10 years ago
Michael Peters
8b1d6f5e75
fixing "else" typo
10 years ago
Michael Peters
7194fe1064
need to handle the case where include_pattern and exclude_pattern exist in the config file but contain empty strings
10 years ago
Michael DeHaan
ab6e1a43e9
Merge pull request #8579 from hahla/devel
...
Fix issue #8578 . Setting envvar in ""'s ensures the PYTHONPATH is set to
10 years ago
Michael Salmon
e827ec702e
Fix issue #8578 . Setting envvar in ""'s ensures the PYTHONPATH is set to
...
include the lib/ directory.
Before - PYTHONPATH is empty.. ansible fails to run
$ source hacking/env-setup.fish
Appending PYTHONPATH
Setting up Ansible to run out of checkout...
PATH=/Volumes/opt/src/ansible/bin /usr/local/share/python3 /usr/local/bin
/usr/bin /bin /usr/sbin /sbin /usr/local/bin /opt/X11/bin /usr/bin /sbin
/usr/local/bin /Users/ms/bin/
PYTHONPATH=
ANSIBLE_LIBRARY=/Volumes/opt/src/ansible/library
...
Traceback (most recent call last):
File "/Volumes/opt/src/ansible/bin/ansible", line 25, in <module>
from ansible.runner import Runner
ImportError: No module named ansible.runner
After change - it's set.. ansible runs.
source hacking/env-setup.fish
Appending PYTHONPATH
Setting up Ansible to run out of checkout...
PATH=/Volumes/opt/src/ansible/bin /usr/local/share/python3 /usr/local/bin
/usr/bin /bin /usr/sbin /sbin /usr/local/bin /opt/X11/bin /usr/bin /sbin
/usr/local/bin /Users/ms/bin/
PYTHONPATH=/Volumes/opt/src/ansible/lib:
ANSIBLE_LIBRARY=/Volumes/opt/src/ansible/library
....
$ ansible
Usage: ansible <host-pattern> [options]
10 years ago
Michael DeHaan
d1344ec85d
Merge pull request #8560 from sivel/ansible-vault-use-script
...
ansible-vault should support script for --vault-password-file too
10 years ago
Michael DeHaan
99c39b1ff3
By popular request, make the no_log attribute also censor tasks from callbacks.
10 years ago
James Cammarata
a04efa2d84
Update docs for copy directory_mode param per #8572
10 years ago
James Cammarata
fc7859f445
Make sure playbook_dir variable is an absolute path
...
Fixes #8317
10 years ago
Michael DeHaan
8abd6370df
Merge pull request #8569 from drewblas/patch-2
...
Fix typo in CHANGELOG.md
10 years ago
Drew Blas
03d9268b51
Fix typo in CHANGELOG.md
...
This change occured int he ec2 module, not ec2_vol
10 years ago
James Cammarata
4940a7ad77
Merge pull request #8458 from Jmainguy/runner_8404
...
Fixes 8362, returns stderr if No space left on device
10 years ago
James Cammarata
5a128ca286
Adding extra member to mock inventory for unittests
10 years ago
James Cammarata
ac8950fd36
Set special vars in play.vars rather than load_vars
...
Also refactors playbook loading code relating to vars in playbooks
to a sub-function.
Fixes #8534
10 years ago
Matt Martz
d022cca637
If ansible and ansible-playbook accept a script for --vault-password-file so should ansible-vault
10 years ago
Michael DeHaan
f186bcc936
Copy recursion works when source is a parameter, there is no parameter 'recurse' here.
10 years ago
Michael DeHaan
734548d8b4
Merge pull request #8525 from kamaln7/patch-1
...
Replace all occurrences of "Digital Ocean" with "DigitalOcean"
10 years ago
Michael DeHaan
7e42ca6665
Update CHANGELOG
10 years ago
Michael DeHaan
4a05310ba0
Keep things alphabetical in vault option list.
10 years ago
Jakub Paweł Głazik
99a339fa7b
Fix comments and error message
10 years ago
Jakub Paweł Głazik
58feee0f45
ansible-vault view - new command
10 years ago