module DRbQS class Command class Manage < DRbQS::Command::Base HELP_MESSAGE =< [arguments ...] Manage DRbQS server by sending messages. is 'signal', 'status', 'process', or 'initialize'. #{@@command_name} signal server-exit #{@@command_name} signal node-exit-after-task #{@@command_name} signal node-wake #{@@command_name} signal node-sleep #{@@command_name} status #{@@command_name} history #{@@command_name} process list #{@@command_name} process clear #{@@command_name} send string #{@@command_name} send file #{@@command_name} initialize HELP def initialize super(DRbQS::Setting::Manage, HELP_MESSAGE) end def parse_option(argv) argv = option_parser_base(argv, :debug => true) do end setting.set_argument(*argv) end end end end