diff options
Diffstat (limited to 'doc/taler-config.texi')
-rw-r--r-- | doc/taler-config.texi | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/doc/taler-config.texi b/doc/taler-config.texi deleted file mode 100644 index efca5a2d7..000000000 --- a/doc/taler-config.texi +++ /dev/null | |||
@@ -1,47 +0,0 @@ | |||
1 | @c This file is used both in the exchange and merchant | ||
2 | @c manuals. Edits should be propagated to both Gits! | ||
3 | |||
4 | @node Using taler-config | ||
5 | @section Using taler-config | ||
6 | @cindex taler-config | ||
7 | |||
8 | The tool @code{taler-config} can be used to | ||
9 | extract or manipulate configuration values; however, the configuration | ||
10 | use the well-known INI file format and can also be edited by hand. | ||
11 | |||
12 | Run | ||
13 | @example | ||
14 | $ taler-config -s $SECTION | ||
15 | @end example | ||
16 | to list all of the configuration values in section @code{$SECTION}. | ||
17 | |||
18 | Run | ||
19 | @example | ||
20 | $ taler-config -s $section -o $option | ||
21 | @end example | ||
22 | to extract the respective configuration value for option @code{$option} | ||
23 | in section @code{$section}. | ||
24 | |||
25 | Finally, to change a setting, run | ||
26 | @example | ||
27 | $ taler-config -s $section -o $option -V $value | ||
28 | @end example | ||
29 | to set the respective configuration value to @code{$value}. Note that you have to | ||
30 | manually restart the Taler backend after you change the configuration to | ||
31 | make the new configuration go into effect. | ||
32 | |||
33 | Some default options will use $-variables, such as @code{$DATADIR} | ||
34 | within their value. To expand the @code{$DATADIR} or other $-variables | ||
35 | in the configuration, pass the @code{-f} option to | ||
36 | @code{taler-config}. For example, compare: | ||
37 | @example | ||
38 | $ taler-config -s ACCOUNT-bank \ | ||
39 | -o WIRE_RESPONSE | ||
40 | $ taler-config -f -s ACCOUNT-bank \ | ||
41 | -o WIRE_RESPONSE | ||
42 | @end example | ||
43 | |||
44 | While the configuration file is typically located at | ||
45 | @code{$HOME/.config/taler.conf}, an alternative location can be | ||
46 | specified to @code{taler-merchant-httpd} and @code{taler-config} using | ||
47 | the @code{-c} option. | ||