summaryrefslogtreecommitdiffstats
path: root/func/minion/modules/command.py
Commit message (Collapse)AuthorAgeFilesLines
* * Enabled shell for Command module.Silas Sewell2008-11-251-9/+3
| | | | * Removed unnecessary if statement.
* make command.run invoke sub_process with closed_fds=TrueAdrian Likins2008-09-021-2/+3
| | | | | | | so new processed dont inherit any fd's from func FIXME: we should probably do the same for all uses of sub_process
* Merge branch 'master' into cmd_run_envAdrian Likins2008-08-261-1/+27
|\
| * export jboss and fix some typosmakkalot2008-08-111-1/+1
| |
| * the series of exporting the minion modules to UI command modulemakkalot2008-08-071-0/+26
| |
* | add support for specifying a set of enviroment variables to runAdrian Likins2008-08-211-4/+9
|/ | | | | | | | | a command in. also, add a unit test case atm, the env variables specified completely replace the normal enviroment
* added in the desc/version/api items in the modules.Steve 'Ashcrow' Milner2008-01-161-0/+4
|
* Simplify our modules by auto-detecting them and registering their handlersLuke Macken2008-01-151-13/+1
| | | | | | | | | | | | | | - Auto-detect and load all FuncModules. This obsoletes the need to have our modules define a register_rpc method. - Use introspection in our FuncModule to auto-register all method handlers that do not being with an underscore. This obsoletes the need to hardcode methods in our modules. - Remove all __init__ methods from our modules, along with register_rpc - Modify the func-create-module script to reflect these changes. Note that doing 'from modules import func_module' is no longer supported in our modules, do to some interesting path issues with our auto-detection code. Supported methods are now: 'import func_module' or 'from func.minion.modules import func_module'
* Moved from sub_process to os.access for exists.Steve 'Ashcrow' Milner2008-01-131-6/+7
|
* Add Steve's match to check if a command exists.Michael DeHaan2008-01-131-1/+14
|
* Moved code under the func namespace.Devan Goodwin2007-10-021-0/+38
Previously we had overlord, minion, modules, and func all at the root of the source tree. After install these would all be shuffled below func. Relocated them in the source tree to reflect this.