
FIXED: * `envs/funcs.go:78:3: unknown field IgnoreWhiteSpace in struct literal of type EnvErrNoVal, but does have IgnoreWhitespace` * `envs/funcs_enverrnoval.go:15:8: sb.WasFound undefined (type *strings.Builder has no field or method WasFound)`
17 lines
555 B
Go
17 lines
555 B
Go
/*
|
|
Package pdsh (!! WIP !!) provides PDSH-compatible functionality for parsing group files.
|
|
|
|
Note that this library will *only* source and parse PDSH-compatible host/group files,
|
|
it will not actually connect to anything.
|
|
It simply provides ways of returning lists of hosts using generation rules/patterns.
|
|
|
|
Currently, the only supported PDSH module is `misc/dshgroup` but additional/all other
|
|
host list modules are planned.
|
|
|
|
For details, see:
|
|
|
|
- https://github.com/chaos/pdsh/
|
|
- https://github.com/chaos/pdsh/blob/master/doc/pdsh.1.in
|
|
*/
|
|
package pdsh
|