I am writing a simple distributed system in DRb.
I have all the peers, and one server to do the bootstrapping. In that server, I have a few methods like "suggest_peer", and "start_service" and "stop_service".
When a peer connects to the server, he is able to call all three methods. I want him to be able to call only the first one.
Also, I have a file that initializes the server, and has a little cmd line so I can start the service, debug, log and all that. I want that cmd line to be able to call the second and third methods, as well as the first one.
How can I do that? How can I prevent peers from stopping the service?
If I put the service methods as private, I can't call them from the cmd line.