This file is indexed.

/usr/lib/ruby/vendor_ruby/specinfra/command/debian/v8/service.rb is in ruby-specinfra 2.66.0-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
class Specinfra::Command::Debian::V8::Service < Specinfra::Command::Debian::Base::Service
  class << self
    include Specinfra::Command::Module::Systemd

    def check_is_enabled_under_systemd(service, level=nil)
      [
        super(service),
        "ls /etc/rc[S5].d/S??#{escape(service)} >/dev/null 2>/dev/null"
      ].join('||')
    end

    alias_method :check_is_enabled, :check_is_enabled_under_systemd
  end
end