Commit Graph

195 Commits (ada9033acdf7c78102d1e5de0910a75dcf7b6c5a)

Author SHA1 Message Date
Michael DeHaan f5bd60c87c add fake module for 'raw' 14 years ago
Michael DeHaan c8b298dc56 Default git module to master branch so branch= is not required. 14 years ago
Michael DeHaan 733677362d update comment about branch support, now that supported 14 years ago
Michael DeHaan 85438bf1c0 Allow service 'enable' parameter be 'enabled', which is what I'd personally try to use. 14 years ago
Cosmin Luță 2fae38fffb Added a new fact: network address for an interface 14 years ago
Cosmin Luță a5b13fe4ce Added parameter to the apt-get install command to prevent interactive conflict resolution 14 years ago
Michael DeHaan 8cb22cf858 Merge pull request #336 from sfromm/issue122
Issue122 - have all modules log to syslog
14 years ago
Michael DeHaan 37b394fd6e Merge pull request #337 from ordrin/devel
Support for branches in git module
14 years ago
Stephen Fromm 1144a21668 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.
14 years ago
felix 5f8e2a3651 removed unecessary branch addition from switchver 14 years ago
felix 325b397ac0 added in support for branches in git module (now takes optional "branch") 14 years ago
Stephen Fromm 5506147033 Move import of spwd under a try block
Resolves issue #333.  If spwd is not available, the password will
be set regardless.
14 years ago
Brendan Beveridge f09ec78fbd Merge remote-tracking branch 'ansible-origin/devel' into devel
Conflicts:
	library/user
14 years ago
Michael DeHaan f2e8836c94 Merge pull request #324 from lcosmin/devel
Prevent facter stderr messages from confusing ansible
14 years ago
Michael DeHaan a589ee4d15 Reverting to apply correct attribution. 14 years ago
Michael DeHaan de00dacff9 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)
14 years ago
Brendan Beveridge 5d63c6b204 remove now useless append check in user_mod 14 years ago
Brendan Beveridge 96c0ee0efc 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
14 years ago
Peter Sankauskas 6a4e8d7f4c 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. 14 years ago
Cosmin Luță 472395bd77 Prevent facter stderr messages from confusing ansible 14 years ago
Michael DeHaan cbbd9d8f3a Merge pull request #316 from skvidal/devel
fix up service module to make it start processes that are listed to be
14 years ago
Michael DeHaan 4011d15faa 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.
14 years ago
Seth Vidal 2c416b8f06 fix up service module to make it start processes that are listed to be
running and to report errors from starting them
14 years ago
Rafal Lewczuk 2b7828e118 Fix: file module does not remove dangling symlinks 14 years ago
Michel Blanc fc61141ebf
Fixes _find_binaries not using globals
_find_binaries now sets the right globals
Binaries are now properly populated (reverse path/binary for loops)
14 years ago
Michel Blanc 572868c9e1 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.
14 years ago
Michael DeHaan 9ad4e7d149 Merge pull request #300 from sfromm/git
Updates for git module
14 years ago
Stephen Fromm f1b7149fcf Update how to set default selinux context for file
This removes the 'context' option and replaces it with checks for
'_default' value for seuser, serole, setype, or (maybe) selevel.
If '_default' is provided *and* there is a default context for the given
file, this will set the file context to the available default.
14 years ago
Stephen Fromm 887d293a3b Add git reset --hard support to git module
Resets working tree to what is in HEAD and discards any
uncommitted changes.
14 years ago
Stephen Fromm 40dbd9b3d7 Add exit_json and fail_json to git module
This adds exit_json() and fail_json() to git module.  It also sets
version to 'HEAD', if not provided.
14 years ago
Jeroen Hoekx 2c8fbdbd20 Group order in user module should not matter.
Groups are not necessarily returned in the defined order, especially when the user already existed before ansible started managing the system.
14 years ago
Michael DeHaan 594084bc9f Merge pull request #287 from dne/user-group-add-system
Add 'system' option for user and group modules
14 years ago
Michael DeHaan 27582ad313 Merge pull request #281 from dne/file-link-relative
File module fix for symlink from relative source path
14 years ago
Michael DeHaan dd380f67e6 Merge pull request #289 from skvidal/devel
service enable=on/off
14 years ago
Jeroen Hoekx d96763346f Make async wrapper kill the process it supervises.
It wasn't killing the job at all before.
Indentation was 3 spaces.
14 years ago
Seth Vidal dc30b01c87 new service module handles enable=on/off for chkconfigging it on 14 years ago
Daniel Néri a837009c5d Add 'system' option for user and group modules
Creates system accounts/groups; corresponds to the '-r' option for {user,group}add.

The option is only honored when users/groups are added, not when modified.
14 years ago
Daniel Néri 82d3fcfd53 File module fix for symlink from relative source path 14 years ago
Michael DeHaan 36e454c52f Because paramiko using a pty can't distinguish stderr and stdout, remove handling that
treated -D as a way to show stderr, and make sure modules don't include things on stderr.
Update docs and test module script to come into line.
14 years ago
Michael DeHaan b56efa7809 Fix handling of list=status such that it will actually work in absense of the state command, to
make it useful from /usr/bin/ansible and the API.  Also some minor style fixes.
14 years ago
Michael DeHaan ea296e9edb Merge branch 'devel' of https://github.com/jkleint/ansible into jkleint-devel 14 years ago
Seth Vidal a3ab793ba8 fixes for yum module for rhel5 and issue 269 14 years ago
Seth Vidal c701e59592 very minor indentation issue in librar/copy 14 years ago
John Kleint c6db4e8fa3 Get service module working with sudo, add list=status, better error messages.
When running the service module via sudo, `$PATH` didn't contain `/sbin`,
so the service binary couldn't be found.  This just runs `/sbin/service`
directly.  Output is spewed to stderr on error.

Added `list=status` to include the output of `service <cmd> status`.
14 years ago
Michael DeHaan a0ac936a55 Merge pull request #249 from jhoekx/octal-file-mode
Return the octal mode of a file instead of decimal.
14 years ago
Michael DeHaan 5aa5a48f7f Merge pull request #250 from jkleint/devel
Service module crashes if args has no "=".
14 years ago
Michael DeHaan b6bdb22341 Merge pull request #251 from sfromm/selinux
Selinux -- more fun
14 years ago
Stephen Fromm 7b41e22e56 Change to socket.getfqdn() for fqdn fact 14 years ago
Stephen Fromm 5be20f8748 Update file module selinux-awareness
This adds selinux_mls_enabled() and selinux_enabled() to detect a)
whether selinux is MLS aware (ie supports selevel) and b) whether
selinux is enabled.  If selinux is not enabled, all selinux operations
are punted on -- same as if python's selinux module were not available.
In set_context_if_different(), I now iterate over the current context
instead of the context argument.  Even if the system supports MLS, it
may not return the selevel from selinux.lgetfilecon().  Lastly, this
drops selinux_has_selevel() in lieu of the current approach.
14 years ago
jkleint 30ce430363 Service module crashes if args has no "=". 14 years ago