Commit Graph

10809 Commits (bafa63b4245b0ac86fffc30de0ae8bdfa25a4d79)
 

Author SHA1 Message Date
Michael DeHaan e54eeb7629 Merge branch 'local' of https://github.com/sfromm/ansible into devel 13 years ago
Stephen Fromm 84c9caa805 Simplify ansible-pull to just invoke ansible and ansible-playbook
This eliminates the creation of runner and playbook instances and just
invokes the processes ansible and ansible-playbook.
13 years ago
Stephen Fromm 23ff967f38 Copy inventory file to client 13 years ago
Stephen Fromm 672794f586 Add ansible-pull
A first stab at a pull-based model for ansible.  This does two things:
    1. Invoke the git module via Runner to set up a git repository on the
       localhost.  It sets up Runner to use transport='local' and forces
       the inventory to just 'localhost'.
    2. Run any playbooks provided.  By default, this wants to run the
       playbook local.yml.  This also sets transport='local' and sets
       the host_list to a list: localhost, fqdn, and hostname.
The reason for setting the host_list and not using override_hosts is
because there may be plays in the playbook that are not meant for a
specific host.  That is, if the git repository is for the entire site
and not host-specific, you don't want to override hosts and apply all
plays to any given host.  This has the downside of potentially running a
play three times if the play is defined for 'hosts: all'.
13 years ago
Stephen Fromm 3803b27f6c Add playbook and template to set up ansible-pull
Playbook will install ansible, create directory where git checkout goes,
and set up a cron job to run ansible-pull.
13 years ago
Michael DeHaan df61a65344 Merge pull request #294 from jhoekx/inventory-hostname
Define 'inventory_hostname' variable for hosts.
13 years ago
Michael DeHaan fe90650311 Merge pull request #295 from jhoekx/user-existing-groups
Group order in user module should not matter.
13 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.
13 years ago
Jeroen Hoekx 03541baba7 Define 'inventory_hostname' variable for hosts. 13 years ago
Michael DeHaan 28cf753756 changelog update 13 years ago
Michael DeHaan 5b8ee8488d update development changelog 13 years ago
Michael DeHaan 02efcdced6 Merge branch 'devel' of https://github.com/skvidal/ansible into skvidal-devel 13 years ago
Seth Vidal 38ea61054f if a playbook has no vars - still include the global vars 13 years ago
Seth Vidal dc35dd99c0 inventory group 'all' variables are global variables
applied to every host and available all over
they are read in so that ones defined first can be used to define
the later ones.
13 years ago
Rafal Lewczuk 3de61fb180 Fix: file module does not remove dangling symlinks 13 years ago
Rafal Lewczuk 06e99ee75e Trivial fix: make PyDev happy (imports). 13 years ago
Michael DeHaan 7ff1679007 Merge pull request #303 from jkleint/devel
Remove command timeout.
13 years ago
Michael DeHaan 548b551bfd Merge pull request #306 from leucos/devel
Adds support for Ubuntu style update-rc.d
13 years ago
Michel Blanc a7e4da92db 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 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.
13 years ago
Michael DeHaan 9ad4e7d149 Merge pull request #300 from sfromm/git
Updates for git module
13 years ago
Michael DeHaan 5fe677645d Merge pull request #302 from sfromm/selinux
Set default selinux context with '_default'
13 years ago
Michael DeHaan 52efc90326 Merge pull request #299 from pas256/patch-1
test-module arguments file location
13 years ago
John Kleint cbbaee8a9f Remove command timeout. 13 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.
13 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.
13 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.
13 years ago
Peter Sankauskas f9a14cfec1 Adding a missing '~' to use the user's home directory instead of the root file system for the module arguments 13 years ago
Michael DeHaan 594084bc9f Merge pull request #287 from dne/user-group-add-system
Add 'system' option for user and group modules
13 years ago
Michael DeHaan af74c741ef Merge pull request #285 from tbielawa/fixLicenseInDevel
Fix license in devel
13 years ago
Michael DeHaan 27582ad313 Merge pull request #281 from dne/file-link-relative
File module fix for symlink from relative source path
13 years ago
Michael DeHaan dd380f67e6 Merge pull request #289 from skvidal/devel
service enable=on/off
13 years ago
Jeroen Hoekx f14c1e3e91 Async: print one poll message per polling cycle.
Instead of one per host per polling cycle.
13 years ago
Jeroen Hoekx 029fe1273c Modify /usr/bin/ansible and playbooks to use the new async API. 13 years ago
Jeroen Hoekx ce9a8c9ffc Introduce Async API in Runner. 13 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.
13 years ago
Michael DeHaan cc13d34f91 changelog update 13 years ago
Seth Vidal dc30b01c87 new service module handles enable=on/off for chkconfigging it on 13 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.
13 years ago
Tim Bielawa 029d86be2f Include license file in MANIFEST.in. Fixes #284 13 years ago
Daniel Néri 82d3fcfd53 File module fix for symlink from relative source path 13 years ago
Michael DeHaan cfb7c94c49 Merge pull request #271 from jhoekx/group-names
Introduce group_names in template variables.
13 years ago
Jeroen Hoekx b87710a1df Introduce group_names in template variables.
This is a list of all the groups a host is in.
13 years ago
Michael DeHaan 7d228c5198 Add github fork banner to docs project to correct for missing akamai resource. 13 years ago
Michael DeHaan b388ac721e move stuff back into footer 13 years ago
Michael DeHaan 07d7b7c802 Remove double tweet links 13 years ago
Michael DeHaan 589ae67d95 work on footer 13 years ago
Michael DeHaan ee20586d28 Attempt to cleanup rendering of social buttons 13 years ago
Michael DeHaan 57c4559a47 Attempt to add +1/like/etc buttons. 13 years ago
Michael DeHaan d049d425e6 Clarify stderr behavior of modules 13 years ago