-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor code cleanup, update lots of documentation
- Loading branch information
Showing
6 changed files
with
60 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,14 @@ | ||
2004-11-12 Albert Chu <[email protected]> | ||
|
||
* README: Updated with better descriptions. | ||
|
||
* TUTORIAL: Fixed wording in a few places. | ||
|
||
* genders.spec.in: Updated description. | ||
|
||
* src/libgenders/genders_query.y (_calc_complement, _calc_query): | ||
Move destroying of hostlist from _calc_complement to _calc_query. | ||
|
||
2004-11-10 Albert Chu <[email protected]> | ||
|
||
* src/libgenders/genders_query.y (_calc_query): Handle NULL query | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,42 @@ | ||
Genders is a static file cluster configuration database. This package | ||
includes a number of libraries useful for parsing a genders database | ||
in C and Perl programs. It includes: | ||
Genders is a static cluster configuration database used for cluster | ||
configuration management. It is used by a variety of tools and | ||
scripts for management of large clusters. The genders database is | ||
typically replicated on every node of the cluster. It describes the | ||
layout and configuration of the cluster so that tools and scripts can | ||
sense the variations of cluster nodes. By abstracting this information | ||
into a plain text file, it becomes possible to change the | ||
configuration of a cluster by modifying only one file. | ||
|
||
This package includes: | ||
|
||
* libgenders | ||
- A C library which can be linked with -lgenders. See | ||
- A C library for parsing and querying a genders database. See | ||
libgenders(3). | ||
|
||
* Libgenders.pm | ||
- A Perl module developed with Perl Extensions that accesses | ||
the C library. Perl extensions is limited and provides | ||
a very strange Perl API. It is therefore recommended most users | ||
use Genders.pm. See Libgenders(3). | ||
- A Perl module developed with Perl Extensions that takes advantage | ||
of the already available C library. Perl extensions is limited | ||
and provides an unorthodox Perl API. It is therefore recommended | ||
that users use Genders.pm. See Libgenders(3). | ||
|
||
* Genders.pm | ||
- A Perl module that interfaces with Libgenders.pm, hiding away | ||
the yuckiness of Libgenders.pm. See Genders(3). | ||
- A Perl module that interfaces with Libgenders.pm, hiding away the | ||
ugliness of Libgenders.pm. See Genders(3). | ||
|
||
* nodeattr | ||
- A command that parses and outputs information from a genders | ||
database. See nodeattr(1). | ||
- A genders query tool that that parses and outputs information from | ||
a genders database. See nodeattr(1). | ||
|
||
* gendlib.pl | ||
- Genders Perl API for backwards compatability. For the most | ||
part used exclusively on site at Lawrence Livermore National | ||
Laboratories. Probably of no use to outside clusters. See | ||
- Genders Perl API for backwards compatability. For the most part, | ||
this is used exclusively at Lawrence Livermore National | ||
Laboratory. This is probably of no use to anyone else. See | ||
gendlib(3). | ||
|
||
Comments, patches, fixes, suggestions are always welcome. | ||
Comments, patches, fixes, suggestions are always welcome. Please read | ||
DISCLAIMER and COPYING for copyright and license information. | ||
|
||
Please read DISCLAIMER and COPYING for copyright and license | ||
information. | ||
For a thorough introduction to Genders, please read the TUTORIAL. | ||
|
||
Albert Chu | ||
[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters