1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

Commit graph

  • e0bc949219 Fix doc indent level Michael DeHaan 2012-03-14 23:45:02 -0400
  • ea8770ad54 Fix pathing in example Michael DeHaan 2012-03-14 13:13:32 -0400
  • 0427ec8ad6 Add missing file Michael DeHaan 2012-03-14 12:53:17 -0400
  • 1a0672fd1e Fix exception type Michael DeHaan 2012-03-14 12:51:26 -0400
  • c909b66864 use iteritems vs items(), probably doesn't matter that much Michael DeHaan 2012-03-14 21:56:49 -0400
  • a735dd2b17 Added the 'test-module' script, useful for testing modules without running them in Ansible. Michael DeHaan 2012-03-14 21:49:27 -0400
  • 4bde4926c3 Modules don't have to return JSON, key=value pairs is ok. Michael DeHaan 2012-03-14 21:16:15 -0400
  • 40fd778e2c 'shell' is a magic module that executes the command module with shell=True Michael DeHaan 2012-03-14 20:40:06 -0400
  • 73d20b81c6 Add basic test of yum module (VERY basic) just to make sure syntax remains ok. Need to do something trivial for service and git module also. Michael DeHaan 2012-03-14 20:02:29 -0400
  • e8751baaf3 Remove remote log function as it's only used in one place now Michael DeHaan 2012-03-14 20:00:09 -0400
  • 696b67f935 Fix async to use the new argfiles method (wrapping brain around rock, really must write module development guide) Michael DeHaan 2012-03-14 19:57:56 -0400
  • aeea46678d Fix the copy module to use the argsfile method Michael DeHaan 2012-03-14 19:09:44 -0400
  • 917f929e86 Fix template module Michael DeHaan 2012-03-14 19:08:10 -0400
  • 6b152c94b9 Correct the setup module Michael DeHaan 2012-03-14 19:06:35 -0400
  • 3ea9174ed7 Split argsfile handling into subfunction, attempt to apply argsfile logic to setup Michael DeHaan 2012-03-14 19:05:19 -0400
  • 1f53c89b14 convert so they handle argsfiles rather than arguments Seth Vidal 2012-03-14 00:39:18 -0400
  • a9a9e3af65 modify yum to be used with argsfile and fix a number of items with how it handles "advanced" pkgspecs for the state= cases Seth Vidal 2012-03-14 00:38:38 -0400
  • a9948f97c6 convert runner to use an args file rather than just arguments passed on the command line Seth Vidal 2012-03-14 00:34:00 -0400
  • d9c626e686 Added start of a module development guide, prob needs some editing and maybe some simpler examples Michael DeHaan 2012-03-14 12:50:40 -0400
  • 505d3942b0 Added documentation on the 'shell' module, which is a virtual module and isn't really in the library folder. Docs build. Michael DeHaan 2012-03-14 20:57:35 -0400
  • f681425453 Rename hosts file back since included by MANIFEST.in Michael DeHaan 2012-03-13 22:00:03 -0400
  • 38e8771785 update docs, fix playbook page formatting Michael DeHaan 2012-03-13 21:55:55 -0400
  • ee69bd18cc Add -T to playbook manpage Michael DeHaan 2012-03-13 21:54:42 -0400
  • db61e8f346 Fix -t tree mode so it writes out the value for each host, not everything, once again Michael DeHaan 2012-03-13 21:38:06 -0400
  • e6f175e929 Allow the SSH timeout to be passed to playbooks just like it already could with /usr/bin/ansible Michael DeHaan 2012-03-13 21:35:34 -0400
  • e3b4981feb Various additions to make sure timed out and failed hosts are taken out of the playbook even if failed during setup, async tasks, or poll operations. This introduced some redundancy so I've made some notes in the code where things need to be refactored to remove them. Michael DeHaan 2012-03-13 21:30:34 -0400
  • 4ae98ed92d Upgrades to error handling, now general try/catch available. Michael DeHaan 2012-03-13 20:59:05 -0400
  • 496686629a Slight tweaks to playbook docs + docs rebuild Michael DeHaan 2012-03-13 20:32:55 -0400
  • 2e1b59a9d2 restructure the examples directory Michael DeHaan 2012-03-13 19:27:13 -0400
  • 09a7119e74 Annotate more files, fix missing imports messing with playbooks. Hey Tim, please test your stuff :) Michael DeHaan 2012-03-13 19:19:54 -0400
  • 238fffd6ef Annotated playbook example Michael DeHaan 2012-03-13 18:55:04 -0400
  • 84c60c2750 Merge pull request #91 from skvidal/feature Michael DeHaan 2012-03-13 15:37:11 -0700
  • 8df0c92f3c Merge pull request #28 from tbielawa/DieGracefully Michael DeHaan 2012-03-13 15:35:38 -0700
  • 3567237dbc modify build/spec file to work on el6 with quasi-broken setup process remove data_files section from setup.py for some reason or another Seth Vidal 2012-03-13 11:08:10 -0400
  • 8484fe3147 Clarify YAML doesn't always use a list as external variables files are hashes. Michael DeHaan 2012-03-12 23:18:54 -0400
  • 0b94d3d3f8 replace 'foo' with a more meaningful example + 1 other typo Michael DeHaan 2012-03-12 23:17:59 -0400
  • 37adadcc50 Updating docs, added extensive info on playbook async + external vars_files for keeping variables outside of the playbook file. Michael DeHaan 2012-03-12 23:12:21 -0400
  • dfd2c6dce3 Implement friendlier error handling. Tim Bielawa 2012-03-12 23:11:54 -0400
  • ce85222fa6 What we are running is actually a "play" (multiple plays per playbook) so rename the function to make it more clear Michael DeHaan 2012-03-12 22:05:51 -0400
  • adf1492da2 Add external vars example Michael DeHaan 2012-03-12 22:03:20 -0400
  • e582bd5ec5 Add fire and forget example Michael DeHaan 2012-03-12 21:02:38 -0400
  • 86e19cd8c8 This adds async poll support to playbooks. See examples. Some more testing due + docs but this is more or less a mirror of what /bin/ansible does. It also has a 'fire and forget' mode if the poll interval is left off or set to 0. Michael DeHaan 2012-03-12 20:53:10 -0400
  • 32484f2156 Merge pull request #90 from skvidal/feature Michael DeHaan 2012-03-12 16:27:20 -0700
  • cf4ac3b6b2 Add yum latest to docs and examples Michael DeHaan 2012-03-12 19:23:58 -0400
  • 3f834cfe3e Docs rebuild, removing submodule because it was causing build problems and I don't quite grok them :) Michael DeHaan 2012-03-12 19:13:19 -0400
  • 0b94c78042 yum module Seth Vidal 2012-03-12 16:31:13 -0400
  • 884d8af759 Attempt to force docs rebuild? Please? Michael DeHaan 2012-03-11 23:28:04 -0400
  • 4a184b57c8 Docs build Michael DeHaan 2012-03-11 23:20:55 -0400
  • 6660a5efbd add polling info to manpage Michael DeHaan 2012-03-11 21:09:44 -0400
  • db7ba87111 Add polling logic in runner such that all actions get kicked off everywhere then polling happens only on needed hosts, allowing some hosts to fail and drop out of the running. Michael DeHaan 2012-03-11 20:54:54 -0400
  • 49a636d8a0 Fixed up async and polling logic. Michael DeHaan 2012-03-11 19:27:43 -0400
  • 5be1a612d3 Add async polling logic to runner. Will add to playbook shortly, have to diagnose why paramiko is not letting async_wrapper daemonize itself when it does work fine when directly executed. Michael DeHaan 2012-03-11 18:40:35 -0400
  • d5c239404b Update .gitignore Michael DeHaan 2012-03-11 04:23:00 -0400
  • e5386b82c6 Put index.html back in git, problem with staleness was related to .buildinfo, not git. Michael DeHaan 2012-03-11 04:21:53 -0400
  • e3adca1431 Makefile needs to clean things up Michael DeHaan 2012-03-11 04:21:19 -0400
  • f7ff5d1055 Doc build Michael DeHaan 2012-03-11 21:53:13 -0400
  • 4cc8fe7561 Split paragraph Michael DeHaan 2012-03-11 21:53:00 -0400
  • 91d8d0e502 update faq Michael DeHaan 2012-03-11 21:47:57 -0400
  • e726b9796d Fix some example command line options, add some more links to home page. Michael DeHaan 2012-03-11 21:46:05 -0400
  • 817cac7954 Add missing "-a" to examples page Michael DeHaan 2012-03-11 21:20:30 -0400
  • 0bccec9fb5 Add polling info to docs Michael DeHaan 2012-03-11 21:09:21 -0400
  • d3fe5f617a Rename 'yamlscripts' to 'yamlsyntax', add some extra crosslinking to make sure folks find the interesting docs pages, some misc editing here and there. Michael DeHaan 2012-03-11 15:34:21 -0400
  • 02549869b1 Attempt to force update Michael DeHaan 2012-03-11 15:04:08 -0400
  • 0404acfcc2 Move all html content on the website to build top level such that we do not need the redirect. Michael DeHaan 2012-03-10 22:34:53 -0500
  • 60a13cf540 Ignore commented out lines in the ansible setup files. Michael DeHaan 2012-03-10 21:19:41 -0500
  • 0035181c59 Remove URL target for clicking on arch diagram, add width/height so it loads nicer. Michael DeHaan 2012-03-10 19:57:24 -0500
  • e284c8cedc Merge pull request #16 from tbielawa/master Michael DeHaan 2012-03-10 16:51:34 -0800
  • 667aa81bee Add arch diagram to website + docs build Michael DeHaan 2012-03-10 19:48:53 -0500
  • 82befee081 Change Source0 in spec file to point at github downloads Tim Bielawa 2012-03-10 16:25:46 -0500
  • dce6074a81 Fixes for better RPM packaging Tim Bielawa 2012-03-10 16:19:33 -0500
  • 3f245498c4 Fixup RPM building: Makefile, Spec File, .gitignore Tim Bielawa 2012-03-10 14:02:25 -0500
  • 4c9dd972b4 Fixes for output formatting Michael DeHaan 2012-03-10 13:40:08 -0500
  • bb5e4fad48 Abstracted out transport from implementation so it can be pluggable. Also fixes for output format. Michael DeHaan 2012-03-10 13:35:46 -0500
  • a13def0fbe Add yum module to examples + playbook examples Michael DeHaan 2012-03-10 11:40:49 -0500
  • 8bf7e79ee3 Add yum to examples Michael DeHaan 2012-03-10 11:35:36 -0500
  • d397c13d9c Added "Fork Me On Github" Michael DeHaan 2012-03-10 10:39:34 -0500
  • 8808c814ea Merge pull request #89 from skvidal/feature Michael DeHaan 2012-03-10 05:40:24 -0800
  • a99b491b32 touch up to yum module. fix a couple of bugs comment about state='latest' Seth Vidal 2012-03-10 02:19:57 -0500
  • 557f4d382b add links Michael DeHaan 2012-03-09 22:58:17 -0500
  • ff64996542 doc build Michael DeHaan 2012-03-09 22:49:40 -0500
  • 88140938cb Fix heading Michael DeHaan 2012-03-09 22:49:30 -0500
  • 4ecad80725 Add google stats Michael DeHaan 2012-03-09 22:31:54 -0500
  • 10d197d77f Add missing files Michael DeHaan 2012-03-09 22:14:31 -0500
  • a631c21e5a Add ansible-playbook(1) manpage. Michael DeHaan 2012-03-09 22:11:41 -0500
  • 209760f8f6 Add manpage for ansible-playbook, since it is a command. More detailed docs will remain on the web site. Michael DeHaan 2012-03-09 22:06:44 -0500
  • 8e7ae6cf69 Minor reordering and linking some things up. Michael DeHaan 2012-03-09 21:50:00 -0500
  • 37864337eb Added FAQ page (limited space in menu, so trimmed some topics on lesser used bits) + docs build Michael DeHaan 2012-03-09 21:41:18 -0500
  • e575c0639f Added one last image to header + docs rebuild Michael DeHaan 2012-03-09 19:13:34 -0500
  • 1346fd02c9 Added stub yum docs + docs rebuild Michael DeHaan 2012-03-09 19:04:40 -0500
  • ef5e326215 Docs build Michael DeHaan 2012-03-09 18:51:06 -0500
  • 1699013fbd Rename 'ensure' to 'state' so it lines up with the service module Michael DeHaan 2012-03-09 18:50:34 -0500
  • ae0e4ff0cf Merge pull request #88 from skvidal/feature Michael DeHaan 2012-03-09 15:44:54 -0800
  • b576e389b1 runner buglet and yum module Seth Vidal 2012-03-09 18:33:58 -0500
  • fae963a6d2 Docs build + attempt to add image to website Michael DeHaan 2012-03-09 18:29:01 -0500
  • 2fb25f1fe8 Merge pull request #9 from tbielawa/master Michael DeHaan 2012-03-09 15:05:22 -0800
  • a1010e5405 Spellcheck. Formatting. References. Tim Bielawa 2012-03-09 14:39:29 -0500
  • e67e446950 Merge pull request #8 from tbielawa/master Michael DeHaan 2012-03-09 08:51:46 -0800
  • 8bd523fe36 More bootstrap tweaks Tim Bielawa 2012-03-09 11:50:07 -0500
  • f25b39b7ce Switch to the 'Sphinx Bootstrap' Theme: https://github.com/ryan-roemer/sphinx-bootstrap-theme Tim Bielawa 2012-03-09 11:44:14 -0500
  • 26800d5db8 Merge branch 'master' of https://github.com/ansible/ansible.github.com Tim Bielawa 2012-03-09 11:12:34 -0500