- 02 Dec, 2013 1 commit
-
-
James Tanner committed
-
- 28 Nov, 2013 2 commits
-
-
Revert "No longer need to reference 'version_added' in docs for these, as this was quite a while ago." This reverts commit ff0a41d4.
Michael DeHaan committed -
Michael DeHaan committed
-
- 18 Nov, 2013 1 commit
-
-
raise errors when omitted, updated changelog with new modules.
Michael DeHaan committed
-
- 21 Aug, 2013 1 commit
-
-
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.
Jesse Keating committed
-
- 15 Jun, 2013 1 commit
-
-
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
Jan-Piet Mens committed
-
- 29 May, 2013 1 commit
-
-
Stoned Elipot committed
-
- 28 Apr, 2013 1 commit
-
-
Michael DeHaan committed
-
- 28 Feb, 2013 1 commit
-
-
Josh Mandel committed
-
- 25 Feb, 2013 1 commit
-
-
module_common: also work if there are no aliases (shell, command, etc) modules
Seth Vidal committed
-
- 13 Jan, 2013 2 commits
-
-
* Rename fail_on_rc_non_zero to check_rc, much more succinct. * Simplify method defintion * Fix command module and drop shell=shell option; whether to use shell is determined by if args is a list.
Stephen Fromm committed -
This updates apt, apt_repository, command, cron, easy_install, facter, fireball, git, group, mount, ohai, pip, service, setup, subversion, supervisorctl, svr4pkg, user, and yum to take advantage of run_command in module_common.py.
Stephen Fromm committed
-
- 21 Nov, 2012 1 commit
-
-
Jan-Piet Mens committed
-
- 19 Nov, 2012 1 commit
-
-
Michael DeHaan committed
-
- 08 Nov, 2012 1 commit
-
-
The option will be passed to the Popen object created and will be used to execute the command instead of the default shell.
Felix Ingram committed
-
- 31 Oct, 2012 1 commit
-
-
I had made and pushed this change after you already pulled the request. @dhozac indicated that it would probably be better to use return codes > 255 for anything related to Ansible itself. Which makes sens :)
Dag Wieers committed
-
- 30 Oct, 2012 1 commit
-
-
I had made and pushed this change after you already pulled the request. @dhozac indicated that it would probably be better to use return codes > 255 for anything related to Ansible itself. Which makes sens :)
Dag Wieers committed
-
- 26 Oct, 2012 1 commit
-
-
If this is not a certainty, playbooks will fail without an 'rc' and checking both if there is an rc, and whether the 'rc' is (not) 0 is very complicated. (especially because ${something.rc} will not be substituted and all that)
Dag Wieers committed
-
- 25 Oct, 2012 1 commit
-
-
Daniel Hokka Zakrisson committed
-
- 23 Oct, 2012 1 commit
-
-
- added terse syntax to modules.rst - added description of special variables to template module
Jan-Piet Mens committed
-
- 03 Oct, 2012 2 commits
-
-
Michael DeHaan committed
-
Call os.path.expanduser in the creates= and removes= section of the command module so ~/ and the like works.
Michael DeHaan committed
-
- 01 Oct, 2012 2 commits
-
-
pipes.quote is a bit overzealous for what we want to do, quoting ; and other characters that you most likely want to use in your shell invocations. The regexp is the best I could come up with to be able to only replace the parts of the arguments that shouldn't be executed.
Daniel Hokka Zakrisson committed -
Jan-Piet Mens committed
-
- 29 Sep, 2012 1 commit
-
-
Fixes issue #1134
Daniel Hokka Zakrisson committed
-
- 28 Sep, 2012 1 commit
-
-
plus a small fix in rst.j2 template manpages generated & checked modules.html generated & checked
Jan-Piet Mens committed
-
- 05 Sep, 2012 1 commit
-
-
Execute action only if specified file using param removes exist (execute reverse control of creates). Some usage eg.: ```yaml - name: enable apache2 default websites action: command /usr/sbin/a2ensite $item creates=/etc/apache2/sites-enabled/$item with_items: - default - default-ssl - name: disable apache2 default websites action: command /usr/sbin/a2dissite $item removes=/etc/apache2/sites-enabled/$item with_items: - default - default-ssl ```
Marco Vito Moscaritolo committed
-
- 04 Sep, 2012 1 commit
-
-
This allows the use of ~ in the chdir argument of the command module I know the later change is absolutely necessary as the first change was not sufficient. It may be that the first change fixes shell and the second fixes command.
willthames committed
-
- 17 Aug, 2012 1 commit
-
-
Michael DeHaan committed
-
- 14 Aug, 2012 1 commit
-
-
Michael DeHaan committed
-
- 11 Aug, 2012 2 commits
-
-
Michael DeHaan committed
-
Make pep8 tests run against the library directory as well, and associated tweaks (mostly to indentation) in the library directory.
Michael DeHaan committed
-
- 03 Aug, 2012 1 commit
-
-
Michael DeHaan committed
-
- 01 Aug, 2012 1 commit
-
-
Teach the common module code to warn users about typo'd arguments and also set everything to None automatically such that code doesn't have to do a lot of params.get('foo', None) everywhere.
Michael DeHaan committed
-
- 30 Jul, 2012 1 commit
-
-
the 'chdir' argument changes the current working directory to the fullpath supplied as its value, before the execution of the command.
Petros Moisiadis committed
-
- 24 Jul, 2012 1 commit
-
-
Port command module over to new common code. Notice that this has to subclass AnsibleModule -- this should be the only one that has to do that.
Michael DeHaan committed
-
- 09 May, 2012 1 commit
-
-
The ohai and facter modules use /usr/bin/logger to log the fact that they have been invoked. I added 'import os' to the ping module so that it could have the same syslog statements as the other modules. I separated the condensed: shlex.split(open(argfile, 'r').read()) into two separate statements similar to the other modules.
Stephen Fromm committed
-
- 06 Apr, 2012 1 commit
-
-
already exists
Michael DeHaan committed
-
- 15 Mar, 2012 1 commit
-
-
Michael DeHaan committed
-
- 14 Mar, 2012 1 commit
-
-
Fix async to use the new argfiles method (wrapping brain around rock, really must write module development guide)
Michael DeHaan committed
-