mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
4473d2fea2
* sample/cgi-session-pstore.rb: use IO::NULL instead of hard coded device name for portability. * sample/drb/ring_place.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@47124 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
25 lines
418 B
Ruby
25 lines
418 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(IO::NULL)
|
|
STDOUT.reopen(IO::NULL, 'w')
|
|
STDERR.reopen(IO::NULL, 'w')
|
|
DRb.thread.join
|
|
end
|