/usr/bin/pyro-esd is in pyro 1:3.14-1.2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 | #!/usr/bin/python
#############################################################################
#
# $Id: pyro-esd,v 1.2.2.2 2008/05/05 00:13:03 irmen Exp $
# Pyro Event Server Unix Daemon
# Author: Jeff Bauer (jbauer@rubic.com)
# This software is released under the MIT software license.
#
# This is part of "Pyro" - Python Remote Objects
# which is (c) Irmen de Jong - irmen@razorvine.net
#
#############################################################################
import os, sys
from Pyro.EventService import Server
from Pyro.ext.daemonizer import Daemonizer
class ESD(Daemonizer):
def __init__(self):
Daemonizer.__init__(self)
def main_loop(self):
Server.start(sys.argv[1:])
if __name__ == "__main__":
ESD().process_command_line(sys.argv)
|