Michael Vogt
9caef884e1
fail early on the wrong sudo password instead of waiting until the timeout happens
11 years ago
Michael DeHaan
0bd8935899
Merge pull request #3515 from neomantra/apt_repository
...
apt_repository: enhance documentation
11 years ago
Michael DeHaan
597e5075f1
Merge pull request #3585 from devo-ps/documentation
...
Minor typo on site about host_key_checking config section.
11 years ago
Michael DeHaan
1867fb4888
Update an example.
11 years ago
Michael DeHaan
10bc6f6d9c
Merge pull request #3541 from pol/docs_withitems_regivar
...
Create with_items example with a registered var
11 years ago
Michael DeHaan
5d5d579eca
Legacy variable usage.
11 years ago
Michael DeHaan
0fe680d43f
Trim legacy variable usage.
11 years ago
Michael DeHaan
a5e4567c4c
Remove legacy variable usage.
11 years ago
Michael DeHaan
1ff8c78f26
Removing legacy variable usage.
11 years ago
Michael DeHaan
764504b578
Legacy variable usage removed.
11 years ago
Michael DeHaan
131c8489d4
Legacy variable usage removed
11 years ago
Michael DeHaan
c931675520
Trim old style var references.
11 years ago
Michael DeHaan
86ddbb224b
Trim old style var references
11 years ago
Michael DeHaan
303a8ff563
Fix module path in readme file.
11 years ago
Michael DeHaan
c101d4b30b
Documentation indentation fix.
11 years ago
Michael DeHaan
deda5c8ee7
Remove backlinks:top which is setting hyperlinks in docs sections so they are hard to bookmark.
11 years ago
Michael DeHaan
ad5ac71219
Merge pull request #3542 from pol/docs_task_format
...
Update to conventional task format
11 years ago
Michael DeHaan
20fa22b631
Merge pull request #3523 from jpmens/mysql1
...
mysql_db small fix to docs
11 years ago
Michael DeHaan
c98b20b2cf
Slight style preferences.
11 years ago
Sharif Olorin
5fcbfa984d
More informative error message on failure to resolve tmpdir
11 years ago
Sharif Olorin
1a7a779e88
Handle SSH failures when creating remote tmpdir
...
Bail out if the SSH command fails rather than continuing with an
empty tmp variable.
11 years ago
Michael DeHaan
f938bc660f
Slight documentation tweak.
11 years ago
Michael DeHaan
21e06a87ce
Merge pull request #3530 from candeira/with_nested
...
add documentation for with_nested
11 years ago
Michael DeHaan
8a3ea0774a
Update error message since user may have specified connection type via non command line or by default.
11 years ago
Michael DeHaan
5eea4b56fa
Merge pull request #3591 from cocoy/fix_3567
...
Allow roles to be interpolated from --extra-vars
11 years ago
Michael DeHaan
7965bc729b
Merge pull request #3588 from Atte/devel
...
Check for existence of isatty on stdout before calling it
11 years ago
Michael DeHaan
7a759e6396
Merge pull request #3582 from bcoca/fail_if_selinux_and_missing_bindings
...
fatal if target selinux and missing bindings
11 years ago
Michael DeHaan
c11e96928a
Merge pull request #3578 from jlaska/git_branch
...
(git module) Resolve incompatability between depth and version
11 years ago
Michael DeHaan
6b2be84a27
Merge pull request #3590 from fgtham/lvol_fix
...
Fix for Issue #3586 : UnboundedLocalError when removing a logical volume.
11 years ago
Rodney Quillo
a4e829c874
Allow roles to be interpolated from --extra-vars
11 years ago
Florian Tham
ceff31241b
fix fatal error when removing logical volumes
11 years ago
Atte Virtanen
511c7c858d
Check for existence of isatty on stdout before calling it
11 years ago
Vincent Viallet
6a00cb7b3b
Minor typo on site about host_key_checking config section.
11 years ago
Brian Coca
f6c99a69db
switched from sestatus to selinuxenabled as per recommendation
...
Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
11 years ago
Brian Coca
98cc29f9fd
now returns fatal error if operation on selinux enabled target is
...
attempted w/o selinux python bindings
Signed-off-by: Brian Coca <briancoca+dev@gmail.com>
11 years ago
jeromew
de0bc96b70
Implement sudo/sudo_user at the include and role levels
11 years ago
Bruce Pennypacker
cf3f9380d0
added AAAA example
11 years ago
James Laska
95a22338a2
Resolve incompatability between depth and version
...
Git is unable to checkout the specified `version` when the repository is
cloned with a reduced history (`depth`). However, if the repository is
already cloned, subsequent git module calls will update the repository
(default update=True), then properly checkout the specified `version`.
To allow the initial call to properly clone the specified `version`, at
the specified `depth`, this patch adds the `--branch` parameter when
cloning the repository.
11 years ago
Tin Tvrtkovic
4a732c1e9f
Enabled the use of extra vars in playbook file paths when including playbooks from other playbooks.
11 years ago
Bruce Pennypacker
e9de70668b
fixed doc typos
11 years ago
Bruce Pennypacker
a5e9057752
AWS route53 module
11 years ago
Michael DeHaan
c3a8b6ff07
Merge pull request #3568 from andrew-todd/devel
...
Changed shebangs that use /usr/bin/env to use /usr/bin/python and theref...
11 years ago
Andrew Todd
e477d993dd
Changed shebangs that use /usr/bin/env to use /usr/bin/python and therefore be compatible with the ansible_python_interpreter variable.
11 years ago
Serge van Ginderachter
730b368259
Introduce flat_list lookup plugin
...
- hosts: localhost
gather_facts: False
tasks:
- debug: msg="{{item}}"
with_flat_list:
- a
- - b
- c
- d
- - e
- f
- - g
- h
- i
- j
- - k
- l
# note: main list or list (sub)items can also be set as a variable
TASK: [debug msg="{{item}}"] **************************************************
ok: [localhost] => (item=a) => {"item": "a", "msg": "a"}
ok: [localhost] => (item=b) => {"item": "b", "msg": "b"}
ok: [localhost] => (item=c) => {"item": "c", "msg": "c"}
ok: [localhost] => (item=d) => {"item": "d", "msg": "d"}
ok: [localhost] => (item=e) => {"item": "e", "msg": "e"}
ok: [localhost] => (item=f) => {"item": "f", "msg": "f"}
ok: [localhost] => (item=g) => {"item": "g", "msg": "g"}
ok: [localhost] => (item=h) => {"item": "h", "msg": "h"}
ok: [localhost] => (item=i) => {"item": "i", "msg": "i"}
ok: [localhost] => (item=j) => {"item": "j", "msg": "j"}
ok: [localhost] => (item=k) => {"item": "k", "msg": "k"}
ok: [localhost] => (item=l) => {"item": "l", "msg": "l"}
11 years ago
Alan Descoins
04349ec362
Added --skip-tags option to ansible-playbook.
11 years ago
Michael DeHaan
fb869e58ee
Merge pull request #3540 from pol/docs_deprecate_onlyif
...
Glossary Doc: deprecate the old "only_if:" format in favor of "when:"
11 years ago
Joshua Lund
a5459e8a03
* Added documentation for Role Variables
...
* Fixed a few minor typos
11 years ago
Stephen Fromm
2af6510ded
Update stat module to handle symlinks
...
Add follow parameter to stat module that controls whether to follow
symlinks. It defaults to no.
This then calls os.stat or os.lstat based on the value of follow.
Add lnk_source key/value pair if path is a symlink and follow=no.
Drop the statement that sets isdir=False and islnk=True when path is a
symlink that points to a directory.
11 years ago
Michael DeHaan
c222c8133b
Merge pull request #3548 from arsatiki/patch-1
...
Fix pretty_bytes for exa- and zettabytes
11 years ago
Michael DeHaan
1fec79ab9d
Merge pull request #3549 from arsatiki/patch-2
...
Fix ZFS module issues with spaces in property values
11 years ago