| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | move files for the new naming scheme | Seth Vidal | 2007-09-25 | 1 | -144/+0 |
| | | |||||
| * | Merge branch 'master' of ssh://git.fedoraproject.org/git/hosted/func | Seth Vidal | 2007-09-25 | 8 | -1736/+0 |
| |\ | | | | | | | | | * 'master' of ssh://git.fedoraproject.org/git/hosted/func: Renamed server to minion and client to overlord | ||||
| | * | Merge branch 'master' of git+ssh://git.fedoraproject.org/git/hosted/func | Robin Norwood | 2007-09-25 | 1 | -0/+144 |
| | |\ | | | | | | | | | | | | | | | | | | | Conflicts: func.spec setup.py | ||||
| | * | | Renamed server to minion and client to overlord | Robin Norwood | 2007-09-25 | 8 | -1736/+0 |
| | | | | |||||
| * | | | change imports for new paths | Seth Vidal | 2007-09-25 | 1 | -1/+1 |
| | |/ |/| | |||||
| * | | - all the class bits to make the authssl xmlrpc server work - most of it ↵ | Seth Vidal | 2007-09-25 | 1 | -0/+144 |
| |/ | | | | | | copied and modified from plague - modifications to setup.py to behave with func dir for python sitelib | ||||
| * | Change module loader to only try to load each module once. | Robin Norwood | 2007-09-24 | 1 | -4/+11 |
| | | | | | Also, fix module import failure error message. | ||||
| * | add a basic AuditLogger class | Adrian Likins | 2007-09-24 | 2 | -11/+39 |
| | | | | | | | | | | at the moment, it just logs ever call method and args to /var/log/func/audit.log server.py: some refactor in preperation for better logging (mostly changing stuff so I can get to the xmlrpcserver innards for things like client ip's) | ||||
| * | Package the subprocess module so that we can use it on EL4. | Michael DeHaan | 2007-09-24 | 1 | -0/+1217 |
| | | |||||
| * | Do not raise ImportError when loading a module. | Robin Norwood | 2007-09-24 | 1 | -2/+1 |
| | | | | | An ImportError will now just print the error and continue with module loading. | ||||
| * | add system.listMethods support | Adrian Likins | 2007-09-24 | 1 | -0/+11 |
| | | | | | | I could of done this as a module I suppose, but this is easier and simpler | ||||
| * | change to module loader to allow subdirs in the module path. | Adrian Likins | 2007-09-21 | 2 | -11/+46 |
| | | | | | | | | | | | | | | | | | | | | | | | This also implies that methods calls need a module as well (aka, you now have to call test.test_add instead of just test_add) but this also means you can setup modules/foo/bar/blip.py and blip.py exports a "do_blippy" method, which you would call by the name foo.bar.blip.do_blippy() Note, any subdir that has module files in it, will need an approriate __init__.py file. server.py, func_module.py: To do the above, we need to pass in the module_name to the register function, so we can associate it correctly. server.py also got a fix for a FuncException that needed tobe codes.FuncException | ||||
| * | Add trait_names for ipython's tab completion | James Bowes | 2007-09-20 | 1 | -0/+4 |
| | | |||||
| * | just a friendly reminder | Adrian Likins | 2007-09-20 | 1 | -1/+13 |
| | | |||||
| * | we are not vf_server, change I!*N domain | Adrian Likins | 2007-09-20 | 1 | -1/+1 |
| | | |||||
| * | Merge branch 'master' of ssh://git.fedoraproject.org/git/hosted/func | Adrian Likins | 2007-09-20 | 3 | -3/+8 |
| |\ | |||||
| | * | Get rid of extra / in module loading error | James Bowes | 2007-09-20 | 1 | -1/+1 |
| | | | |||||
| | * | Prevent XMLRPC server from printing to console. | Michael DeHaan | 2007-09-20 | 1 | -0/+1 |
| | | | |||||
| | * | Catch FuncException when the config file is missing and exit gracefully | James Bowes | 2007-09-20 | 2 | -2/+6 |
| | | | |||||
| * | | pychecker cleanups | Adrian Likins | 2007-09-20 | 2 | -6/+11 |
| |/ | | | | | "import codes" instead of polluting the namespace with "from codes import *" and update accordingly | ||||
| * | Removing VF items + misc cleanup | Michael DeHaan | 2007-09-20 | 1 | -79/+42 |
| | | |||||
| * | remove all the --debug "try to run from the src tree" crap | Adrian Likins | 2007-09-20 | 2 | -27/+3 |
| | | | | | | 3rd party modules wont be here anyway, so remove all that weird noise | ||||
| * | debug spew cleanup to protect the unwashed masses from foo poisoning | Adrian Likins | 2007-09-20 | 2 | -8/+4 |
| | | |||||
| * | fix up config_data to use ConfigParser correctly | Adrian Likins | 2007-09-20 | 1 | -1/+4 |
| | | |||||
| * | Merge branch 'master' of ssh://git.fedoraproject.org/git/hosted/func | Adrian Likins | 2007-09-20 | 17 | -1891/+47 |
| |\ | |||||
| | * | Remove yaml libraries (configparser is good enough) plus remove references ↵ | Michael DeHaan | 2007-09-20 | 17 | -1643/+33 |
| | | | | | | | | | to virt-factory. | ||||
| | * | Basic config file. Intentionally short. Slowly removing VF code. | Michael DeHaan | 2007-09-20 | 2 | -248/+14 |
| | | | |||||
| * | | attempt to let us run with --debug flag to run from src checkout | Adrian Likins | 2007-09-20 | 1 | -18/+22 |
| | | | |||||
| * | | attempts at letting us run from a installed, or local modules | Adrian Likins | 2007-09-20 | 1 | -11/+25 |
| |/ | | | | there are smarter ways to do this I'm sure | ||||
| * | initial code drop | Adrian Likins | 2007-09-20 | 18 | -0/+2301 |
| module_loader from the virt-factory node server xmlrpc server from the virt-factory-server code and some test modules no ssl support yet, no init scripts, no packagin etc | |||||
