/usr/lib/python2.7/dist-packages/PyChef-0.2.3.egg-info/PKG-INFO 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 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | Metadata-Version: 1.1
Name: PyChef
Version: 0.2.3
Summary: Python implementation of a Chef API client.
Home-page: http://github.com/coderanger/pychef
Author: Noah Kantrowitz
Author-email: noah@coderanger.net
License: BSD
Description: PyChef
======
.. image:: https://secure.travis-ci.org/coderanger/pychef.png?branch=master
:target: http://travis-ci.org/coderanger/pychef
A Python API for interacting with a Chef server.
Example
-------
::
from chef import autoconfigure, Node
api = autoconfigure()
n = Node('web1')
print n['fqdn']
n['myapp']['version'] = '1.0'
n.save()
Further Reading
---------------
For more information check out http://pychef.readthedocs.org/en/latest/index.html
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
|