Metadata-Version: 2.1
Name: patchwork
Version: 1.0.1
Summary: Deployment/sysadmin operations, powered by Fabric
Home-page: https://fabric-patchwork.readthedocs.io
Author: Jeff Forcier
Author-email: jeff@bitprophet.org
License: BSD
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Build Tools
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Software Distribution
Classifier: Topic :: System :: Systems Administration
License-File: LICENSE

Patchwork is a mid-level library of Unix system administration primitives such
as "install package" or "create user account", interrogative functionality for
introspecting system state, and other commonly useful functions built on top of
the `Fabric <http://fabfile.org>`_ library.

Specifically:

- Primary API calls strive to be **idempotent**: they may be called multiple
  times in a row without unwanted changes piling up or causing errors.
- Patchwork **is just an API**:  it has no concept of "recipes", "manifests",
  "classes", "roles" or other high level organizational units. This is left up
  to the user or wrapping libraries.

    - This is one way Patchwork differs from larger configuration management
      frameworks like `Chef <http://opscode.com/chef/>`_ or `Puppet
      <http://puppetlabs.com>`_. Patchwork is closest in nature to those tools'
      "resources."

- It is implemented in **shell calls**, typically sent **over SSH** from a
  local workstation.

    - However, where possible, its functions expect a baseline Invoke
      `~invoke.context.Context` object and can thus run locally *or* remotely,
      depending on the specific context supplied by the caller.


