This file is indexed.

/usr/lib/python2.7/dist-packages/chef/role.py is in python-chef 0.2.3-2.

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
from chef.base import ChefObject

class Role(ChefObject):
    """A Chef role object."""

    url = '/roles'
    attributes = {
        'description': str,
        'run_list': list,
        'default_attributes': dict,
        'override_attributes': dict,
        'env_run_lists': dict
    }