summaryrefslogtreecommitdiff
path: root/commands
Commit message (Collapse)AuthorAgeFilesLines
* Refreshed metadata for extras modulesToshio Kuratomi2016-12-061-0/+4
|
* Make `main()` calls conditional - commands (#3655)Fabio Alessandro Locati2016-12-051-1/+2
|
* Make expect module compile on python 3Michael Scherer2016-10-151-2/+5
|
* Remove stderr=False from calls to exit_json. (#2879)Matt Clay2016-09-071-2/+0
|
* Make sure we don't catch rc=0 as a timeout (#2823)Matt Martz2016-08-311-1/+1
|
* If rc is null, assume that a timeout happened. Fixes #2484 (#2485)Matt Martz2016-08-091-1/+7
|
* Catch errors related to insufficient (old) versions of pexpect. Fixes #13660Matt Martz2016-03-081-2/+17
|
* Add functionality to give multiple iterative responses for a question in expectMatt Martz2016-01-191-2/+40
|
* Changes to author formatting, remove emailsGreg DeKoenigsberg2015-06-161-1/+1
|
* Remove the executable option as it's redundantMatt Martz2015-06-161-13/+1
|
* Add new module 'expect'Matt Martz2015-06-162-0/+189
|
* Move modules into subdirectory.Michael DeHaan2014-09-264-443/+0
|
* Make command warnings off by default to minimize surprises.Michael DeHaan2014-08-222-4/+3
|
* Docs for command warnings feature.Michael DeHaan2014-08-221-1/+3
|
* Slightly trim down the warnings list based on some things being pretty commonMichael DeHaan2014-08-221-1/+0
| | | | for local usage.
* Added warnings to command moduleWill Thames2014-08-222-9/+49
| | | | | | | | | | | | | | Generate warnings when users are shelling out to commands rather than using modules Can be turned off on a per-action line with the documented warn=False flag. Can be turned off globally using command_warnings = False in ansible config file. Print out warnings using the standard playbook callbacks. Created some additional tests in TestRunner.test_command and also a demonstration playbook.
* Removing skipped=True from result when using creates= and removes=James Cammarata2014-08-191-2/+0
| | | | Fixes #8645
* Merge branch 'spelling' of git://github.com/cgar/ansible into develMichael DeHaan2014-08-081-1/+1
|\ | | | | | | | | | | Conflicts: docsite/rst/guide_rax.rst plugins/callbacks/mail.py
| * multiple spelling error changesCarlos E. Garcia2014-04-291-1/+1
| |
* | Move splitter to module_utils so modules can use it and fix command arg ↵James Cammarata2014-07-291-6/+3
| | | | | | | | | | | | splitting Fixes #8338
* | Fixes for module param counting and additional shell quoting issuesJames Cammarata2014-07-231-5/+10
| |
* | Fixing up shell quoting issuesJames Cammarata2014-07-221-8/+21
| |
* | Security fixes:James Cammarata2014-07-211-27/+34
| | | | | | | | | | | | | | * Strip lookup calls out of inventory variables and clean unsafe data returned from lookup plugins (CVE-2014-4966) * Make sure vars don't insert extra parameters into module args and prevent duplicate params from superseding previous params (CVE-2014-4967)
* | Add note about useful quote filter.Michael DeHaan2014-07-181-0/+3
| |
* | Added examples to the command moduleRik2014-06-241-2/+10
| |
* | Added examples to the shell moduleRik2014-06-241-1/+12
|/
* Clarify free_form isn't a real option :)Michael DeHaan2014-04-032-2/+4
|
* Micro-optimization: replace s.find(x)!=-1 with x in sCristian Ciupitu2014-03-161-1/+1
| | | | | timeit shows a speedup of ~3x on Python 2.7.5 x86_64. It also makes the code a bit shorter.
* Force command action to not be executed by the shell unless specifically enabledJames Tanner2014-03-101-1/+1
|
* Add creates= and removes= to the script: actionjeromew2014-02-181-0/+18
|
* Adding no_log: capability for tasksJames Cammarata2014-01-311-1/+3
| | | | Fixes #4088
* Mention shell module in command documentationJeff Geerling2014-01-271-1/+2
| | | | Users who use the command module for pretty much all shell commands may be stymied when they try using a command with <, >, $VAR, etc., and not know that they can use the `shell` module instead. This documentation fix clarifies this.
* shell module: document removes option and sync with command module docStoned Elipot2013-12-251-7/+13
|
* Fixes #5023 Convert all modules to use new snippet import patternJames Tanner2013-12-021-2/+2
|
* There's a cleaner way to do this, commit to module formatter pending.Michael DeHaan2013-11-272-1/+2
| | | | | | Revert "No longer need to reference 'version_added' in docs for these, as this was quite a while ago." This reverts commit ff0a41d446a03f93aa57a6baa96c5333bea269ea.
* No longer need to reference 'version_added' in docs for these, as this was ↵Michael DeHaan2013-11-272-2/+1
| | | | quite a while ago.
* Add version_added to all modules missing version_added information, the docs ↵Michael DeHaan2013-11-183-0/+3
| | | | | | formatter will now raise errors when omitted, updated changelog with new modules.
* Allow for relative paths by using abspathJesse Keating2013-08-201-6/+3
| | | | | | | relative pathing comes in handy on occasion, particularly when delegating to localhost and running some command out of your playbook repo. Making use of os.path.abspath will allow for the full path to chdir and executable to be discovered if not provided.
* Docs: consistently format playbook EXAMPLESJan-Piet Mens2013-06-171-1/+2
|
* DOCS: standardize on EXAMPLES (a.k.a. Docs-JumboPatch JetLag Edition)Jan-Piet Mens2013-06-154-20/+29
| | | | | | | Migrated all examples: in DOCUMENTATION=''' string to standalone EXAMPLES=''' string Added deprecation warning to moduledev.rst and remove deprecated example from it Fixed up a few typos and uppercased some acronyms. add consistency to how EXAMPLES are formatted
* No need to expanduser() command's chdir argument twiceStoned Elipot2013-05-291-1/+1
|
* Allow modules to be categorized, and also sort them when generating the ↵Michael DeHaan2013-04-284-0/+322
documentation.