Commit Graph

256 Commits (1a88a3362f42dfd68c8d9ab955d546e9a8e74872)

Author SHA1 Message Date
Michael DeHaan 1a88a3362f add noninteractive to debian module per #602 12 years ago
Seth Vidal f6a09bc4c1 Squashed commit of the following:
commit ea14bbfb52587bf5b97b5577c0439b01cb0b4836
Merge: 82819a9 285aaf8
Author: Michael DeHaan <michael.dehaan@gmail.com>
Date:   Sun Jul 15 14:38:28 2012 -0400

    Merge branch 'devel' of https://github.com/skvidal/ansible into skvidal_mount

commit 285aaf836c
Merge: 634c117 32b6879
Author: Seth Vidal <skvidal@fedoraproject.org>
Date:   Mon Jul 16 12:42:21 2012 -0400

    Merge remote-tracking branch 'upstream/devel' into devel

    * upstream/devel: (52 commits)
      format fixes to make fetch more usable
      ...

commit 634c11748e
Author: Seth Vidal <skvidal@fedoraproject.org>
Date:   Thu Jul 12 01:16:00 2012 -0400

    fix a bunch of small bugs in mount module - test with bind and local mounts

commit fcfd73de71
Author: Seth Vidal <skvidal@fedoraproject.org>
Date:   Wed Jul 11 20:46:14 2012 -0400

    fix some obvious bugs pointed out by #ansible

commit 13c3080383
Author: Seth Vidal <skvidal@fedoraproject.org>
Date:   Wed Jul 11 19:35:34 2012 -0400

    mount/fstab editor
12 years ago
Michael DeHaan 64c51ade1e Change the way we do with_items to make them happen next to each other in runner, which eliminates the problem of with_items and vars_files sometimes not playing nice with each other.
(Also a fix for the user module error handling when the user
is not present at the time of the return.  This can only really be caused by multiple ansible executions).
12 years ago
Michael DeHaan 931f9f1a61 Setup module no longer saves to disk, as templates are mostly useful in playbooks and this allows lots of simplifications
around file pathing and removes occasional permissions conflicts depending on how things are used.
12 years ago
Mark Theunissen f47cc1693d The MySQL modules 12 years ago
Jeremy Smitherman e5a6627d10 Removed unused recurse option in file module. 12 years ago
Michael DeHaan fd7e96d33e Merge pull request #578 from jeremysmitherman/boolean_parameters
Removed boolean parameter setting from user module.
12 years ago
Michael DeHaan 626e4cb003 Merge pull request #572 from goozbach/devel
fixes #569 apt module problems on old versions of apt-python
12 years ago
Jeremy Smitherman ecacb67d31 Added yes/no to user options instead of False comparison for force and remove options for user module 12 years ago
Michael DeHaan 3f5c4772be Merge pull request #575 from jeremysmitherman/apt-force
Added cmd modifications to use a force-yes option for apt module
12 years ago
Michael DeHaan 949f8b8fc5 Merge pull request #571 from sfromm/group
Group module fixes
12 years ago
Jeremy Smitherman a35a0f885e Added cmd modifications to use a force-yes option for apt module 12 years ago
Derek Carter f38b9d1ca7 added filter for future warning 12 years ago
Stephen Fromm ac3341cc12 Minor fix to user module to further streamline setting 'changed' flag 12 years ago
Derek Carter e261d49acc fixes #569 apt module problems on old versions of apt-python (namely debian 5.0) 12 years ago
Stephen Fromm 3a5f2126a6 Fixes to group module for better error handling
Takes a lot of the fixes to the user module and applies them to the
group module: provide stdout/stderr in result if available and call
fail_json() if the attempted action fails.
12 years ago
Michael DeHaan 3235da074e Merge pull request #568 from sfromm/user
User modules fixes
12 years ago
Michael DeHaan 8bb41bc627 Merge pull request #566 from jeremysmitherman/service-no-pid
Added additional output to service status checker
12 years ago
Stephen Fromm 09f025b7a0 Fixes to user module for better error handling
The user module now returns the output, both stdout and stderr, from
useradd, usermod, and userdel.  This should help debug cases why one of
those commands fail.  In addition, the user module will now call
fail_json() when the attempted command failed so as to properly
communicate a failure in a playbook.
12 years ago
Seth Vidal 2f11350665 modify user module so that password is NEVER logged before the command runs 12 years ago
Jeremy Smitherman 7af3bdc89e Added additional output to service status checker 12 years ago
John Kleint 375a1eaf43 Use iterative MD5 hashing. 12 years ago
Dave Hatton 55694db7c3 switch to hashlib.md5 or md5 instead of OS md5 commands 12 years ago
Peter Sankauskas fed1e9870c Assigning to boolean first 12 years ago
Peter Sankauskas fced8cf6b0 Getting the apt module to accept and understand a 'install-recommends' parameter which allows running apt with --no-install-recommends 12 years ago
Dave Hatton ecaa794f7f copy always returned change=true 12 years ago
Dave Hatton 9d85a55434 switch to shutil.copy rather than os.system(cp) 12 years ago
Dave Hatton 263fcab594 md5 allow copy if file is missing 12 years ago
Jeremy Smitherman 3003aa2d47 Added IndexError catch for copy module, IndexError is thrown if a destination file doesn't exist 12 years ago
Dave Hatton d47de18b6c improve error trapping for md5 12 years ago
Brad Olson be9ff7ff46 Fixes ansible/ansible#522, no longer creates comment in ~/.ssh/authorized_keys, does not create directory or file if state==absent. 12 years ago
Brad Olson 756df550f8 Fixes ansible/ansible#523. Removed 'with:' blocks so module works with Python 2.4 for CentOS 5 support, courtesy of mcodd/ansible@29af24b732. 12 years ago
Derek Carter fc4ae3e270 remove UID/GID from output 12 years ago
Derek Carter a548769792 removed print from debug code of file module 12 years ago
Derek Carter 82832021e8 file when UID or GID doesn't exist 12 years ago
Michael DeHaan efac68b636 Remove the -D module debug flag, which no longer is functional due to sudo pty requirements, and replace with -v/--verbose.
This flag will show playbook output from non-failing commands.  -v is also added to /usr/bin/ansible, but not  yet used.

I also gutted some internals code dealing with 'invocations' which allowed the callback to know what module invoked
it.  This is not something 0.5 does or needed, so callbacks have been simplified.
12 years ago
Ludovic Claude daf858648b Add basic support for Solaris 12 years ago
Ingo Gottwald a42167ca73 Copy module: Extended error handling and fixed error messages 12 years ago
Ingo Gottwald 270266e920 Added to copy module: Error handling for missing permissions on the copy destination 12 years ago
Michael DeHaan 25083953fc Merge pull request #495 from nafeger/devel
make copy module implemented closer to other newer modules when returning results
12 years ago
Nathan A. Feger 26816b72ec attempt to make copy more idiomatic. 12 years ago
Ingo Gottwald abe33a5881 Enhanced the service state recognition in the service module:
- Added Upstart support
- Added an initial unknown state
- Prevented state changes when the current state is not recognized
- Changed the keyword recognition to a safer method
12 years ago
Fred Alger 80f402aa9b Remove unused md5sum function from file module 12 years ago
Fred Alger 834f6a216d Make shell outs to md5sum work on FreeBSD and OS X
Tested with OS X local connection and Linux remote. The paths to the
md5sum and md5 commands are hardcoded to the most common location. This
will definitely fail if the commands are elsewhere, or if the md5
command doesn't support the -q 'quiet' option.
12 years ago
Stephen Fromm 4a6a3fd305 Conditionally import hashlib (issue #471)
Import hashlib if it is there, otherwise import md5.  Adds method
file_digest that wraps the logic on which module to invoke.
12 years ago
Michael DeHaan 7926ab5b95 Merge pull request #469 from nafeger/devel
Add support for older version of python-apt
12 years ago
Nathan A. Feger 1d553830f2 Add support for older version of python-apt 12 years ago
Stephen Fromm 9cf182c225 Add assemble module
This adds a module that concatenates (ie. assembles) a file from
fragments in a directory in alphabetical order.  It chains the file
module afterward to fix up ownership and permission.  This also adds
tests for the assemble module with fragments in assemble.d.
12 years ago
Michael DeHaan 9ff59090c2 capture possible chown stderr output 13 years ago
Michael DeHaan 5a8e61a610 Fix parsing error in file module when returning errors. 13 years ago