This file is indexed.

/usr/lib/python2.7/dist-packages/charmtools/templates/chef/files/cookbooks/juju-helpers/libraries/juju/juju_helpers_dev.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
module JujuHelpersDev
  def relation_ids(relation_name = nil)
    []
  end

  def relation_list(relation_id = nil)
    {}
  end

  def relation_get(unit_name = nil, relation_id = nil)
    {}
  end

  def config_get
    {}
  end

  def unit_get(key)
    nil
  end

  def juju_log(text)
    puts text
  end
end