summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'kadamski-async2'Michael DeHaan2008-06-105-23/+35
|\ | | | | | | | | | | Conflicts: func/jobthing.py
| * Make --forks command line parameter actually working now :)Krzysztof A. Adamski2008-06-071-1/+2
| |
| * Handle remote errors with async calls.Krzysztof A. Adamski2008-06-071-1/+6
| |
| * Eliminate concurency between parent and child which could override job status.Krzysztof A. Adamski2008-06-071-3/+1
| |
| * Daemonize async jobs on minion.Krzysztof A. Adamski2008-06-071-1/+10
| |
| * Change bsddb which is leaking on new python versions.Krzysztof A. Adamski2008-06-072-9/+16
| |
| * Cleanup: Remove unneeded print statement.Krzysztof A. Adamski2008-06-061-1/+1
| |
| * Cleanup: Change parameter names to match comments and similar funtion in ↵Krzysztof A. Adamski2008-06-061-2/+2
| | | | | | | | forkbomb.
| * Jobthing status codes cleanup.Krzysztof A. Adamski2008-06-063-11/+10
| |
| * Fixing "modulus voodoo".Krzysztof A. Adamski2008-06-061-3/+3
| |
* | Merge branch 'kadamski-async'Michael DeHaan2008-06-102-14/+17
|\ \
| * | Register empty SIGCHLD handler to kill zombies.Krzysztof A. Adamski2008-06-041-0/+2
| | |
| * | Jobthing status codes cleanup.Krzysztof A. Adamski2008-06-041-8/+7
| | |
| * | Change parameter names to match comments and similar funtion in forkbomb.Krzysztof A. Adamski2008-06-041-2/+2
| | |
| * | Commenting out unneeded __update_status calls.Krzysztof A. Adamski2008-06-041-2/+4
| | |
| * | "modulus voodoo" is fixed now and it is possible to run with nforks=1.Krzysztof A. Adamski2008-06-041-2/+2
| | |
* | | Merge branch 'master' of ssh://git.fedorahosted.org/git/funcMichael DeHaan2008-06-101-1/+1
|\ \ \
| * | | s/certmater/certmasterAdrian Likins2008-06-031-1/+1
| | | | | | | | | | | | | | | | at least I didn't typo "cermtaster" again
* | | | Merge branch 'kadamski-async'Michael DeHaan2008-06-095-7/+67
|\ \ \ \ | |/ / / |/| / / | |/ /
| * | Handle remote error with async calls.Krzysztof A. Adamski2008-06-031-1/+6
| | |
| * | Fix __bucketize to always start from key 0.Krzysztof A. Adamski2008-06-021-1/+1
| | |
| * | Remove unneeded print statement.Krzysztof A. Adamski2008-05-311-1/+1
| |/
| * Return unformated results from do().Krzysztof A. Adamski2008-05-311-4/+4
| |
| * Added --jobthing option to 'call' cmd_module.Krzysztof A. Adamski2008-05-311-3/+13
| |
| * Added --sort option to 'call' cmd_module.Krzysztof A. Adamski2008-05-311-5/+12
| |
| * Added --async option to 'call' cmd_module.Krzysztof A. Adamski2008-05-312-1/+39
| |
| * Should start from first bucket, not second.Krzysztof A. Adamski2008-05-311-1/+1
| |
* | Add F-9 to the pusher scriptMichael DeHaan2008-05-281-1/+1
|/
* Update web stuffMichael DeHaan2008-05-0513-0/+394
|
* turn on some acl logging so I can debug thisAdrian Likins2008-05-013-10/+26
|
* new file acls.py, start trying to write a class for the acls, so we canAdrian Likins2008-04-303-65/+104
| | | | | support reading/writing/updating them, and eventually, a minion module for it.
* add a "echo" to the test moduleAdrian Likins2008-04-162-0/+51
| | | | | write some unit tests that use the "test.echo" module to test some basic marshall/demarshalling code
* add "--pickle" support for dumping call data in python pickle format.Adrian Likins2008-04-081-1/+6
|
* don't use interactive mode, but print out the results directly from the "call"Adrian Likins2008-04-081-2/+8
| | | | | | | | | | commandline module. Probably needs to get revisited at some point, since being able to use the api's the cmdline module expose could be useful, and printing directly like this is a bit odd. The above changes fix --json/--raw/--xmlrpc output for "call"
* Add Krzysztof to AUTHORS file.Michael DeHaan2008-04-071-0/+1
|
* Func shouldn't run pod2man on certmaster docsMichael DeHaan2008-04-071-2/+0
|
* fix some paths that moved in the func/certmaster split. Fix a typo in theAdrian Likins2008-04-021-5/+4
| | | | | | configuration dumping patch from Krzysztof A. Adamski <krzysztofa@gmail.com>
* comment fixing patch from Krzysztof A. Adamski <krzysztofa@gmail.com>Adrian Likins2008-04-012-15/+15
|
* remove client.py importAdrian Likins2008-03-281-1/+0
|
* move command.py:BaseCommand() to it's own module, base_command.pyAdrian Likins2008-03-288-40/+48
| | | | | update the cmd_modules/* classes accordingly also cleanup some imports in the cmd_modules/* classes
* add a BaseCommand class to func/overlord/command.py.Adrian Likins2008-03-287-88/+65
| | | | | | | | | | | | | This class adds data about the default settings for the Overlord class that the various cmd_module classes were hardcoding, notable DEFAULT_PORT. update all the cmd_modules/* classes to use the new BaseCommand class. Remove any DEFAULT_PORT references. Also remove the ill advised --port option some of them had, since this doesnt really make much sense. Progress on https://fedorahosted.org/func/ticket/31
* add iptables module from Krzysztof A. Adamski <krzysztofa@gmail.com>Adrian Likins2008-03-288-2/+404
| | | | | | | | | add some basic test cases to the unittests (needs expanded) add file info to setup.py add Makefiles to minion/modules/netapp/* and minion/modules/iptables/* to make make clean work
* Changing func/func/overlord/client.py:Client() to Overlord(). Client() stillAdrian Likins2008-03-2816-112/+130
| | | | | | | works but will dive a deprecation warning. First pass at this refactor. I think just about everything has been updated, but some questions remain. Like if client.py needs a name change.
* add Makefile to examples/ so "make clean" worksAdrian Likins2008-03-282-2/+22
|
* Commit Luca's jboss module.Michael DeHaan2008-03-273-0/+239
|
* modified the test-it.sh to work with certmaster/func splitAdrian Likins2008-03-181-22/+49
| | | | | | This assumes that if you aren't doing BUILD_FROM_FRESH_CHECKOUT, that your certmaster/ and func/ dirs are in the same dir, aka, /a/src/certmaster and /a/src/func
* Use Minions(glob).get_all_hosts() to fetch our minion list in funcwebLuke Macken2008-03-102-4/+3
|
* Change funcwebs default port to 51236, to avoid conflicting with pulpLuke Macken2008-03-102-3/+3
|
* Make funcweb generate the egg-info when necessary.Luke Macken2008-03-101-0/+6
|
* Update the funcweb READMELuke Macken2008-03-101-7/+10
| | | | | | - Added instructions for setting up a non-root user to run funcweb with - Added pam-devel to package dep list - Make running funcweb easier by generating the egg_info when necessary