forked from ungleich-public/cdist
Add cdist-dump man page
This commit is contained in:
parent
7a68df48f1
commit
2ec553b480
3 changed files with 114 additions and 2 deletions
|
@ -2,9 +2,10 @@ Changelog
|
||||||
---------
|
---------
|
||||||
|
|
||||||
next:
|
next:
|
||||||
* Debugging: Rename debug-dump.sh to cdist-dump(Darko Poljak)
|
|
||||||
* Type __link: Add messaging (Ander Punnar)
|
|
||||||
* New types: __ufw and __ufw_rule (Mark Polyakov)
|
* New types: __ufw and __ufw_rule (Mark Polyakov)
|
||||||
|
* Type __link: Add messaging (Ander Punnar)
|
||||||
|
* Debugging: Rename debug-dump.sh to cdist-dump (Darko Poljak)
|
||||||
|
* Documentation: Add cdist-dump man page (Darko Poljak)
|
||||||
|
|
||||||
4.10.9: 2019-04-09
|
4.10.9: 2019-04-09
|
||||||
* Type __ssh_authorized_keys: Properly handle multiple --option params (Steven Armstrong)
|
* Type __ssh_authorized_keys: Properly handle multiple --option params (Steven Armstrong)
|
||||||
|
|
|
@ -18,6 +18,7 @@ Contents:
|
||||||
cdist-quickstart
|
cdist-quickstart
|
||||||
cdist-real-world
|
cdist-real-world
|
||||||
man1/cdist
|
man1/cdist
|
||||||
|
man1/cdist-dump
|
||||||
cdist-bootstrap
|
cdist-bootstrap
|
||||||
cdist-configuration
|
cdist-configuration
|
||||||
cdist-manifest
|
cdist-manifest
|
||||||
|
|
110
docs/src/man1/cdist-dump.rst
Normal file
110
docs/src/man1/cdist-dump.rst
Normal file
|
@ -0,0 +1,110 @@
|
||||||
|
cdist-dump(1)
|
||||||
|
=============
|
||||||
|
|
||||||
|
NAME
|
||||||
|
----
|
||||||
|
cdist-dump - Dump data from local cdist cache
|
||||||
|
|
||||||
|
|
||||||
|
SYNOPSIS
|
||||||
|
--------
|
||||||
|
|
||||||
|
::
|
||||||
|
|
||||||
|
cdist-dump [options] [host...]
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
DESCRIPTION
|
||||||
|
-----------
|
||||||
|
cdist-dump is a helper script that dumps data from local cdist cache for
|
||||||
|
specified hosts. If host is not specified then all data from cache directory
|
||||||
|
is dumped. Default cache directory is '~/.cdist/cache'.
|
||||||
|
|
||||||
|
cdist-dump can be used for debugging existing types, host configuration and
|
||||||
|
new types.
|
||||||
|
|
||||||
|
|
||||||
|
OPTIONS
|
||||||
|
-------
|
||||||
|
**-a**
|
||||||
|
dump all
|
||||||
|
|
||||||
|
**-C CACHE-DIR**
|
||||||
|
use specified CACHE-DIR (default: ~/.cdist/cache)
|
||||||
|
|
||||||
|
**-c**
|
||||||
|
dump code-*
|
||||||
|
|
||||||
|
**-d DELIMITER**
|
||||||
|
delimiter used for filename and line number prefix (default: ':')
|
||||||
|
|
||||||
|
**-E**
|
||||||
|
dump global explorers
|
||||||
|
|
||||||
|
**-e**
|
||||||
|
dump type explorers
|
||||||
|
|
||||||
|
**-F**
|
||||||
|
disable filename prefix (enabled by default)
|
||||||
|
|
||||||
|
**-f**
|
||||||
|
enable filename prefix (default)
|
||||||
|
|
||||||
|
**-g**
|
||||||
|
dump gencode-*
|
||||||
|
|
||||||
|
**-h**
|
||||||
|
show this help screen and exit
|
||||||
|
|
||||||
|
**-L**
|
||||||
|
disable line number prefix (default)
|
||||||
|
|
||||||
|
**-l**
|
||||||
|
enable line number prefix (disabled by default)
|
||||||
|
|
||||||
|
**-m**
|
||||||
|
dump messages
|
||||||
|
|
||||||
|
**-o**
|
||||||
|
dump executions' stdout
|
||||||
|
|
||||||
|
**-p**
|
||||||
|
dump parameters
|
||||||
|
|
||||||
|
**-r**
|
||||||
|
dump executions' stderr
|
||||||
|
|
||||||
|
**-V**
|
||||||
|
show version and exit
|
||||||
|
|
||||||
|
**-v**
|
||||||
|
increase verbosity
|
||||||
|
|
||||||
|
|
||||||
|
EXAMPLES
|
||||||
|
--------
|
||||||
|
|
||||||
|
.. code-block:: sh
|
||||||
|
|
||||||
|
# Dump all
|
||||||
|
% cdist-dump -a
|
||||||
|
|
||||||
|
# Dump only code-* output
|
||||||
|
% cdist-dump -c
|
||||||
|
|
||||||
|
|
||||||
|
SEE ALSO
|
||||||
|
--------
|
||||||
|
:strong:`cdist`\ (1)
|
||||||
|
|
||||||
|
|
||||||
|
AUTHORS
|
||||||
|
-------
|
||||||
|
Darko Poljak <darko.poljak--@--ungleich.ch>
|
||||||
|
|
||||||
|
|
||||||
|
COPYING
|
||||||
|
-------
|
||||||
|
Copyright \(C) 2019 Darko Poljak. Free use of this software is
|
||||||
|
granted under the terms of the GNU General Public License v3 or later (GPLv3+).
|
Loading…
Reference in a new issue