Commit Graph

5629 Commits (8acc31e1d3db153cdecd28334d5d1b227b9de3b1)
 

Author SHA1 Message Date
Ingo Gottwald c2d20c8a3f Added to copy module: Error handling for missing permissions on the copy destination 12 years ago
Michael DeHaan 46fddc3557 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 3b637be97c attempt to make copy more idiomatic. 12 years ago
Ingo Gottwald d63b3edd02 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 9e9dda9e6a Remove unused md5sum function from file module 12 years ago
Fred Alger 9cbdb6ca0a 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 fafc41ae66 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 9ec000c8c0 Merge pull request #469 from nafeger/devel
Add support for older version of python-apt
12 years ago
Nathan A. Feger d765ccacd1 Add support for older version of python-apt 12 years ago
Stephen Fromm bf00f03166 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 ecdecdb76f capture possible chown stderr output 12 years ago
Michael DeHaan bd16c7c4ac Fix parsing error in file module when returning errors. 12 years ago
Michael DeHaan 5c4e496fe8 Merge pull request #426 from dagwieers/facts
Add BIOS information and fix VMware detection (supports both IDE and SCSI)
12 years ago
Michael DeHaan bdb57dc64b Merge pull request #433 from bradobro/authorized_key
Renamed module, fixed idempotency, removed debug param.
12 years ago
Brad Olson f34ebe735e Renamed module, fixed idempotency, removed debug param. 12 years ago
Stephen Fromm 8aec2a4ad0 Update get_selinux_facts in setup module
This switches to using selinux library calls instead of parsing the
output of sestatus.  This fixes issue #428 where the output was slightly
different than expected on F17.  Tested against debian (non-selinux),
centos5, centos6, and fedora17.
12 years ago
Dag Wieers 16e8c30f63 Add BIOS information and fix VMware detection (supports both IDE and SCSI disks) 12 years ago
Michael DeHaan 21d195e21d Tweaks on previous refactoring of playbook, version bump a 0.4 reference, remove some debug, etc 13 years ago
Michael DeHaan 827dfb2751 Merge pull request #391 from cocoy/reload-feature
Feature: Add state=reloaded
13 years ago
Michael DeHaan d7f3ffef17 Merge pull request #393 from bradobro/fix_usergroup
0.4 fix, Remove call to undefined debug() in module 'user'
13 years ago
Brad Olson 637e0d0df3 Remove call to undefined debug() in module 'user'.
I think when we stopped using stderr for debugging modules because
paramiko didn't like it, many modules used the idiom of defining
a debug function that used standard error. The def's and calls were
removed.

This looks like a stray debug() that didn't get removed and didn't
show up unless you alter a user's groups. If it's hit, 'user' fails
with a global undefined function error.
13 years ago
cocoy ff810ffee4 Add state=reloaded 13 years ago
Wes Johnson 557e4ad3b5 starting fresh, doing it 'right'
Lost commit history, but this way I'm not introducing crappy commit
history in RP
13 years ago
Michael DeHaan 5feeac9987 add fake module for 'raw' 13 years ago
Michael DeHaan 2c3b20fc09 Default git module to master branch so branch= is not required. 13 years ago
Michael DeHaan 5f40c49008 update comment about branch support, now that supported 13 years ago
Michael DeHaan e2e4c2d7ce Allow service 'enable' parameter be 'enabled', which is what I'd personally try to use. 13 years ago
Cosmin Luță 3b6717245c Added a new fact: network address for an interface 13 years ago
Cosmin Luță 0f1d98e46b Added parameter to the apt-get install command to prevent interactive conflict resolution 13 years ago
Michael DeHaan 6ec0bc8bfd Merge pull request #336 from sfromm/issue122
Issue122 - have all modules log to syslog
13 years ago
Michael DeHaan d77162c90e Merge pull request #337 from ordrin/devel
Support for branches in git module
13 years ago
Stephen Fromm 67ee30f135 Apply logging of arguments to modules (issue #122)
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.
13 years ago
felix c2135b722d removed unecessary branch addition from switchver 13 years ago
felix 0c2da0e080 added in support for branches in git module (now takes optional "branch") 13 years ago
Stephen Fromm 7d52ace295 Move import of spwd under a try block
Resolves issue #333.  If spwd is not available, the password will
be set regardless.
13 years ago
Brendan Beveridge 5df542468d Merge remote-tracking branch 'ansible-origin/devel' into devel
Conflicts:
	library/user
13 years ago
Michael DeHaan 6354752ded Merge pull request #324 from lcosmin/devel
Prevent facter stderr messages from confusing ansible
13 years ago
Michael DeHaan 59f960101e Reverting to apply correct attribution. 13 years ago
Michael DeHaan 69fa870bb5 Don't let facter spew things to stderr and confuse Ansible, which now blends stdout/stderr due to paramiko
pty usage.

(This commit from lcosmin, manually applied due to github crossup on my part -- MPD)
13 years ago
Brendan Beveridge 2f53b91697 remove now useless append check in user_mod 13 years ago
Brendan Beveridge 26b1bed22c Fixes issue #315
This adds some logic when usings groups possibly in combination with append

  if just specifying groups and the current groups do not match the list
     set groups
  if specifying groups with append and any group thats not in the current groups
     set groups with -a
13 years ago
Peter Sankauskas 27b562fce8 Code was adding '-a' even when the user was already in the desired groups causing usermod to fail since there was no '-G' option. This is duplicate code (3 lines) from the 'group' section, so could be improved, but it works. 13 years ago
Cosmin Luță bc2df5bb40 Prevent facter stderr messages from confusing ansible 13 years ago
Michael DeHaan 9a54cda6f2 Merge pull request #316 from skvidal/devel
fix up service module to make it start processes that are listed to be
13 years ago
Michael DeHaan 473938d1b8 Refactored inventory to make it object oriented, need to make YAML format and executable script
format compatible with this still, and add some tests for INI-style groups of groups
and variables.
13 years ago
Seth Vidal a94544d15c fix up service module to make it start processes that are listed to be
running and to report errors from starting them
13 years ago
Rafal Lewczuk b6be1f5128 Fix: file module does not remove dangling symlinks 13 years ago
Michel Blanc cebba29fb6 Fixes _find_binaries not using globals
_find_binaries now sets the right globals
Binaries are now properly populated (reverse path/binary for loops)
13 years ago
Michel Blanc ca8002d7c5 Adds support for Ubuntu style update-rc.d
Checks if update-rc.d (Ubuntu) or chkconfig (RHEL) should be used.
Adds basic bin path search for those binaries
Adds 'enable' and 'disable' options for 'enable' command since it's the
arguments that update-rc.d uses (this might be somewhat confusing to
have a command line with 'enable=enable', but probably mkes sense for
Ubuntu users).
Allows use of mixed case for 'list' and 'state' commands.
13 years ago
Michael DeHaan aa75226ce7 Merge pull request #300 from sfromm/git
Updates for git module
13 years ago