summaryrefslogtreecommitdiffstats
path: root/modules/process.py
Commit message (Collapse)AuthorAgeFilesLines
* catch some potentially bad args to the process.kill methodAdrian Likins2007-09-251-2/+11
| | | | | We don't want empty args to end up killing the calling process, aka, funcd, so we filter those out.
* Be a bit more paranoid about sub processes. BeforeAdrian Likins2007-09-251-3/+6
| | | | | | | | we could just send "aux; some_arbitrary_command_here" and "some_arbitrary_command_here" would get executed. Also, for some reason, if we send process.kill just one argument, it kills funcd dead. I'm not sure why currently
* pyflakes cleanupsAdrian Likins2007-09-241-1/+0
| | | | | | | mostly just removing unused modules change "from codes import *" to "import codes" in a couple places and updated accordingly
* Package the subprocess module so that we can use it on EL4.Michael DeHaan2007-09-241-4/+4
|
* Remove header from ps outputMichael DeHaan2007-09-241-1/+1
|
* Added kill and pkill to the process moduleMichael DeHaan2007-09-211-1/+12
|
* Process module. Accepts flags to PS, returns nicely formatted tabular output.Michael DeHaan2007-09-211-0/+57