mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
30ff0b6aeb
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@5698 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
25 lines
427 B
Ruby
25 lines
427 B
Ruby
require 'drb/drb'
|
|
require 'rinda/ring'
|
|
require 'rinda/tuplespace'
|
|
|
|
unless $DEBUG
|
|
# Run as a daemon...
|
|
exit!( 0 ) if fork
|
|
Process.setsid
|
|
exit!( 0 ) if fork
|
|
end
|
|
|
|
DRb.start_service(ARGV.shift)
|
|
|
|
ts = Rinda::TupleSpace.new
|
|
place = Rinda::RingServer.new(ts)
|
|
|
|
if $DEBUG
|
|
puts DRb.uri
|
|
DRb.thread.join
|
|
else
|
|
STDIN.reopen('/dev/null')
|
|
STDOUT.reopen('/dev/null', 'w')
|
|
STDERR.reopen('/dev/null', 'w')
|
|
DRb.thread.join
|
|
end
|