/usr/lib/python3/dist-packages/ClusterShell-1.8.egg-info/PKG-INFO is in python3-clustershell 1.8-1.
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 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 | Metadata-Version: 1.1
Name: ClusterShell
Version: 1.8
Summary: ClusterShell library and tools
Home-page: http://clustershell.sourceforge.net/
Author: Stephane Thiell
Author-email: sthiell@stanford.edu
License: LGPLv2+
Download-URL: http://sourceforge.net/projects/clustershell/files/clustershell/1.8/
Description-Content-Type: UNKNOWN
Description: ClusterShell is an event-driven open source Python framework, designed to run
local or distant commands in parallel on server farms or on large Linux
clusters. It will take care of common issues encountered on HPC clusters, such
as operating on groups of nodes, running distributed commands using optimized
execution algorithms, as well as gathering results and merging identical
outputs, or retrieving return codes. ClusterShell takes advantage of existing
remote shell facilities already installed on your systems, like SSH.
User tools
----------
ClusterShell provides clush, clubak and cluset/nodeset, convenient command-line
tools that allow traditional shell scripts to benefit from some of the
library's features:
- **clush**: issue commands to cluster nodes and format output
Example of use:
::
$ clush -abL uname -r
node[32-49,51-71,80,82-150,156-159]: 2.6.18-164.11.1.el5
node[3-7,72-79]: 2.6.18-164.11.1.el5_lustre1.10.0.36
node[2,151-155]: 2.6.31.6-145.fc11.2.x86_64
See *man clush* for more details.
- **clubak**: improved dshbak to gather and sort dsh-like outputs
See *man clubak* for more details.
- **nodeset** (or **cluset**): compute advanced nodeset/nodegroup operations
Examples of use:
::
$ echo node160 node161 node162 node163 | nodeset -f
node[160-163]
$ nodeset -f node[0-7,32-159] node[160-163]
node[0-7,32-163]
$ nodeset -e node[160-163]
node160 node161 node162 node163
$ nodeset -f node[32-159] -x node33
node[32,34-159]
$ nodeset -f node[32-159] -i node[0-7,20-21,32,156-159]
node[32,156-159]
$ nodeset -f node[33-159] --xor node[32-33,156-159]
node[32,34-155]
$ nodeset -l
@oss
@mds
@io
@compute
$ nodeset -e @mds
node6 node7
See *man nodeset* (or *man cluset*) for more details.
Please visit the ClusterShell website_.
.. _website: http://cea-hpc.github.io/clustershell/
Keywords: clustershell,clush,clubak,nodeset
Platform: GNU/Linux
Platform: BSD
Platform: MacOSX
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: POSIX :: BSD
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: System :: Clustering
Classifier: Topic :: System :: Distributed Computing
|