finish #3775, including addition of man page
This commit is contained in:
parent
3186dbf58a
commit
ab0286f583
@ -1,3 +1,6 @@
|
|||||||
|
Mon Mar 20 04:37:46 CET 2017
|
||||||
|
Implemented first working version of taler-auditor. -CG
|
||||||
|
|
||||||
Sat Mar 18 03:44:38 CET 2017
|
Sat Mar 18 03:44:38 CET 2017
|
||||||
Add 'wire_out' table to exchange DB to track outgoing
|
Add 'wire_out' table to exchange DB to track outgoing
|
||||||
wire transfers. -CG
|
wire transfers. -CG
|
||||||
|
@ -3,6 +3,7 @@
|
|||||||
SUBDIRS = . doxygen
|
SUBDIRS = . doxygen
|
||||||
|
|
||||||
man_MANS = \
|
man_MANS = \
|
||||||
|
taler-auditor.1 \
|
||||||
taler-auditor-sign.1 \
|
taler-auditor-sign.1 \
|
||||||
taler-config-generate.1 \
|
taler-config-generate.1 \
|
||||||
taler-exchange-aggregator.1 \
|
taler-exchange-aggregator.1 \
|
||||||
|
29
doc/taler-auditor.1
Normal file
29
doc/taler-auditor.1
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
.TH TALER\-AUDITOR 1 "Mar 20, 2017" "GNU Taler"
|
||||||
|
|
||||||
|
.SH NAME
|
||||||
|
taler\-auditor \- Audit exchange.
|
||||||
|
|
||||||
|
.SH SYNOPSIS
|
||||||
|
.B taler\-auditor -m MASTER_KEY
|
||||||
|
.RI [ options ]
|
||||||
|
.br
|
||||||
|
|
||||||
|
.SH DESCRIPTION
|
||||||
|
\fBtaler\-auditor\fP is a command line tool to be used by an auditor to audit an exchange's database and calculate the current financial state of the exchange (including revenue, amount expected in escrow and risk exposure). The audit is incremental. The first audit must be performed with the \-r option to initialize the tables. The tool reports inconsistencies in the balance or incorrect cryptographic signatures found in the database. It does NOT check with the bank to see that the incoming and outgoing wire transfers that the bank claims to have matches the exchange's database.
|
||||||
|
|
||||||
|
.SH OPTIONS
|
||||||
|
.B
|
||||||
|
.IP "\-h, \-\-help"
|
||||||
|
Print short help on options.
|
||||||
|
.B
|
||||||
|
.IP "\-m KEY, \-\-exchange-key=KEY"
|
||||||
|
Public master key of the exchange in Crockford base32 encoding, for example as generated by gnunet\-ecc \-p.
|
||||||
|
.B
|
||||||
|
.IP "\-r, \-\-reset"
|
||||||
|
Reset the audit, starts everything from the beginning. Useful for testing and required for the first audit to setup auditor's tables. Note that if (just) the exchange key changes, the \-r option should not be used again.
|
||||||
|
|
||||||
|
.SH BUGS
|
||||||
|
Report bugs by using Mantis <https://gnunet.org/bugs/> or by sending electronic mail to <taler@gnu.org>
|
||||||
|
|
||||||
|
.SH "SEE ALSO"
|
||||||
|
\fBtaler\-auditor\-sign\fP(1), \fBgnunet\-ecc\fP(1), \fBtaler.conf\fP(5)
|
@ -3360,7 +3360,7 @@ main (int argc,
|
|||||||
&master_pub)),
|
&master_pub)),
|
||||||
GNUNET_GETOPT_OPTION_SET_ONE ('r',
|
GNUNET_GETOPT_OPTION_SET_ONE ('r',
|
||||||
"restart",
|
"restart",
|
||||||
"restart audit from the beginning",
|
"restart audit from the beginning (required on first run)",
|
||||||
&restart),
|
&restart),
|
||||||
GNUNET_GETOPT_OPTION_END
|
GNUNET_GETOPT_OPTION_END
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user