distributing modules to machines

2006-08-29 Thread r1pp3r
I'm in the the process of designing a build system written in python. It runs from a central server with various build machines hosting server processes, written in Python. Pyro is the chosen RPC mechanism. What I would like to do is have the system update itself on demand. In other words, pass

Re: distributing modules to machines

2006-08-29 Thread Fredrik Lundh
r1pp3r wrote: What I would like to do is have the system update itself on demand. In other words, pass pickled objects (the code comprising the server) down the pipeline to the server, have them copied to the right place, and then restart the server which can then invoke the new code. should