This file is indexed.

/usr/lib/ruby/vendor_ruby/specinfra/command/linux/base/lxc_container.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
15
16
17
class Specinfra::Command::Linux::Base::LxcContainer < Specinfra::Command::Base::LxcContainer
  class << self
    def check_exists(container)
      [
       "lxc-ls -1 | grep -w #{escape(container)}",
       "virsh -c lxc:/// list --all --name | grep -w '^#{escape(container)}$'"
      ].join(' || ')
    end

    def check_is_running(container)
      [
       "lxc-info -n #{escape(container)} -s | grep -w RUNNING",
       "virsh -c lxc:/// list --all --name --state-running | grep -w '^#{escape(container)}$'"
      ].join(' || ')
    end
  end
end