This file is indexed.

/usr/lib/ruby/vendor_ruby/raemon/server.rb is in ruby-raemon 0.3.0+git.2012.05.18.b78eaae57c-1.

This file is owned by root:root, with mode 0o644.

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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
module Raemon
  module Server
    extend self
    include Instrumentation

    # Initializes application components without starting the master process
    def boot!
      load_environment
      load_lib # Must be second so that initializers have access to lib
      load_initializers
    end

    # Start the master daemon. Exits the script if the master daemon is
    # already running.
    def startup!
      stop_if_running!
      start_master_daemon
    end

    # Stop the master daemon
    def shutdown!
      stop_master_daemon
    end

    # @return [Pathname] the target PID file
    def pid_file
      config.root.join("tmp/pids/#{server_name_key}.pid")
    end

    private

      def running?
        pid = File.read(pid_file).to_i rescue 0
        Process.kill(0, pid) if pid > 0
      rescue Errno::ESRCH
      end

      def stop_if_running!
        if running?
          config.logger.error "Error: #{config.server_name} is already running."
          exit
        end
      end

      def start_master_daemon
        config.logger.info "=> Booting #{config.server_name} (#{config.env})"

        Raemon::Master.start(config.num_workers, worker_class, {
          :name         => config.server_name,
          :pid_file     => pid_file,
          :detach       => config.detach,
          :logger       => config.logger,
          :timeout      => config.timeout,
          :memory_limit => config.memory_limit
        })
      end

      def stop_master_daemon
        Raemon::Master.stop(:pid_file => pid_file)
      end

      def load_environment
        environment_file = config.root.join("config/environments/#{config.env}.rb")
        eval File.read(environment_file), binding
      end

      def load_initializers
        load_folder(config.root.join("config/initializers"))
      end

      def load_lib
        libdir = config.root.join("lib")

        $LOAD_PATH.unshift libdir
        load_folder libdir
      end

      def config
        Raemon::Configuration
      end

      def load_folder(path)
        Dir["#{path}/*.rb"].each { |file| require(file) }
      end

      def server_name_key
        config.server_name.downcase.gsub(' ', '_')
      end

      def worker_class
        instance_eval(config.worker_class)
      end
  end
end