# File lib/main/daemon.rb, line 292
    def cmd_signal
      pid = Integer(IO.read(@pid_file)) rescue nil
      if pid
        signal = ARGV.shift || 'SIGALRM'
        Process.kill(signal, pid)
        puts(pid)
        exit(0)
      end
      exit(42)
    end