Metadata-Version: 2.1
Name: zpoolparty
Version: 0.1.3
Summary: Execute ZFS dataset commands transparently across pools/hosts
Home-page: https://github.com/steinbro/zpoolparty
Author: Daniel W. Steinbrook
Author-email: steinbro@post.harvard.edu
License: CDDL
Keywords: zfs
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: System :: Filesystems
License-File: LICENSE
License-File: AUTHORS

zpoolparty: Execute ZFS dataset commands transparently across pools/hosts

The command syntax is the same as the standard "zfs" command, except that
instead of specifying datasets in pool/filesystem[@snapshot] form, you can
prepend host:. For example,

  $ zpoolparty snapshot bos:mypool/work@today

is translated into

  $ ssh bos zfs snapshot mypool/work@today

A single command can reference filesystems on multiple hosts. For example,

  $ zpoolparty get mountpoint mypool/foo bos:mypool/work lax:mypool/play

is, in turn, translated into three commands, run sequentially:

  $ zfs get mountpoint mypool/foo
  $ ssh bos zfs get mountpoint mypool/work
  $ ssh lax zfs get mountpoint mypool/play


