This file is indexed.

/usr/lib/python2.7/dist-packages/charmtools/templates/chef/files/cookbooks/juju-helpers/libraries/juju.rb is in charm-tools 2.1.2-0ubuntu4.

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
$: << File.expand_path('..', __FILE__)

require 'active_support/all'
require 'juju/juju_helpers'
require 'juju/juju_helpers_dev'

class Chef
  class Resource
    include JujuHelpers
    if ENV['JUJU_ENV'] == 'development'
      include JujuHelpersDev
    end
  end

  class Recipe
    include JujuHelpers
    if ENV['JUJU_ENV'] == 'development'
      include JujuHelpersDev
    end
  end

  class Provider
    include JujuHelpers
    if ENV['JUJU_ENV'] == 'development'
      include JujuHelpersDev
    end
  end
end