Commit Graph

2581 Commits (e2b38ff41a8ce397a3c281017e91e5c74e996ee7)
 

Author SHA1 Message Date
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
Stephen Fromm fa51d4a160 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.
13 years ago
Stephen Fromm 740ca70d1e Add git reset --hard support to git module
Resets working tree to what is in HEAD and discards any
uncommitted changes.
13 years ago
Stephen Fromm 720ef7404e 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.
13 years ago
Jeroen Hoekx 23c691bd30 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.
13 years ago
Michael DeHaan 8fc393a7ef Merge pull request #287 from dne/user-group-add-system
Add 'system' option for user and group modules
13 years ago
Michael DeHaan 395ae73066 Merge pull request #281 from dne/file-link-relative
File module fix for symlink from relative source path
13 years ago
Michael DeHaan a0adf573a9 Merge pull request #289 from skvidal/devel
service enable=on/off
13 years ago
Jeroen Hoekx 5045841719 Make async wrapper kill the process it supervises.
It wasn't killing the job at all before.
Indentation was 3 spaces.
13 years ago
Seth Vidal 70f4956420 new service module handles enable=on/off for chkconfigging it on 13 years ago
Daniel Néri 0c4c3422f3 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.
13 years ago
Daniel Néri 546cacd172 File module fix for symlink from relative source path 13 years ago
Michael DeHaan 31f6cd6408 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.
13 years ago
Michael DeHaan 7c9c3b306a 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.
13 years ago
Michael DeHaan 2604d714e0 Merge branch 'devel' of https://github.com/jkleint/ansible into jkleint-devel 13 years ago
Seth Vidal aa69614a8c fixes for yum module for rhel5 and issue 269 13 years ago
Seth Vidal deae763793 very minor indentation issue in librar/copy 13 years ago
John Kleint c8a542dda9 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`.
13 years ago
Michael DeHaan 0841cf4a85 Merge pull request #249 from jhoekx/octal-file-mode
Return the octal mode of a file instead of decimal.
13 years ago
Michael DeHaan 13b8a57386 Merge pull request #250 from jkleint/devel
Service module crashes if args has no "=".
13 years ago
Michael DeHaan 038a8cff28 Merge pull request #251 from sfromm/selinux
Selinux -- more fun
13 years ago
Stephen Fromm b49b8528bf Change to socket.getfqdn() for fqdn fact 13 years ago
Stephen Fromm 61f63b66ff 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.
13 years ago
jkleint 808cd1b4e9 Service module crashes if args has no "=". 13 years ago
Jeroen Hoekx 3e9159b4d2 Return the octal mode of a file instead of decimal. 13 years ago
Stephen Fromm 41fed6ef0c Fix for issue #227
Older versions of selinux, such as that deployed on rhel5, only return a
context of user:role:type instead of user:role:type:level.  This detects
whether the tuple has three elements (old-style) or four.  If the
old-style, it keeps the secontext list at three elements.
13 years ago
cocoy 73349fba36 Bugfix for issue no. 229 13 years ago
Michael DeHaan f27fbe86d5 Merge pull request #226 from cread/make-osx-tests-pass
Use the $HOME env var instead of hard coding /home/<username>
13 years ago
Jeroen Hoekx 48c210c5ff Ohai and facter modules should not use the ansible_facts API. 13 years ago
Michael DeHaan 46e8225bbf Fix bug in library/file 13 years ago
Michael DeHaan 21520d2d47 Fix bug in library/file 13 years ago
Michael DeHaan f79a2cc6a3 Merge branch 'custom-facts' of https://github.com/jhoekx/ansible into jhoekx-custom-facts
Conflicts:
	lib/ansible/runner.py
13 years ago
Michael DeHaan f4bca7ea22 Merge branch 'integration'
Conflicts:
	lib/ansible/playbook.py
	lib/ansible/runner.py
	library/apt
13 years ago
Jeroen Hoekx 08ba4928dc Allow modules to return facts.
If the module result contains "ansible_facts", that will be added to the setup
cache.
13 years ago
Daniel Néri 922899f4be Add optional "default-release" argument for apt module
The value is passed to apt-get's "-t" option. Useful for installing backports, e.g.:

  ansible webservers -m apt -a "pkg=nginx state=latest default-release=squeeze-backports"
13 years ago
Stephen Fromm 332931b9b8 Add context=default option to file module
This adjusts behavior of file module such that removal of se* option
does not revert the file's selinux context to the default.  In order to
go back to the default context according to the policy, you can use the
context=default option.
13 years ago
Daniel Néri 187ab3f918 Add apt module support for installing/removing specific version of package
This uses standard APT syntax, e.g.:

    ansible webservers -m apt -a "pkg=nginx=1.1.19-1 state=installed"
13 years ago
Michael DeHaan 73412513b8 Fix bug in src. Should not code this early :) 13 years ago
Michael DeHaan d35de23c53 Don't try to expand path for None values 13 years ago
Michael DeHaan ba882d98e1 Call os.path.expanduser in modules so things work as expected even when using ./hacking/test-module script 13 years ago
Michael DeHaan f74984fb4a A better fix for slurp, expand path in the module. 13 years ago
Michael DeHaan 4a72e71cd7 Fixup slurp module usage when not running as root, fix error handling path in slurp module. 13 years ago
Daniel Néri f6d0cc56a0 Fix two misspellings of the apt module's "fail_json" function 13 years ago
Michael DeHaan bc06a49850 Backport typo fix from integration branch for apt module error path. 13 years ago
Michael DeHaan 908f01044c Add missing file (slurp) used by templates in non-playbook mode. 13 years ago
Michael DeHaan eeb3cf7bd7 make all templating happen locally, so no jinja2 deps are ever required 13 years ago
Michael DeHaan ea5b6876ba Merge pull request #160 from sfromm/facts
Facts
13 years ago
Stephen Fromm 573d4b4bad Rename serange to selevel to be consistent with selinux docs 13 years ago
Stephen Fromm cfbd9b282b Add native facts to library/setup
This collects various facts from the host so that it isn't necessary to
have facter or ohai installed.  It gets various platform/distribution
facts, information about the type of hardware, whether a virtual
environment and what type, assorted interface facts, and ssh host public
keys.  Most facts are flat.  The two exceptions are 'processor' and all
interface facts.  Interface facts are presented as:
    ansible_lo : {
        "macaddress": "00:00:00:00:00:00",
        "ipv4": { "address": "127.0.0.1", "netmask": "255.0.0.0" },
        "ipv6": [
                    { "address": "::1", "prefix": "128", "scope": "host" }
                ]
    }
13 years ago