Allow extra options to be passed to "tinc restart" again.

This commit is contained in:
Guus Sliepen 2013-07-21 00:20:54 +02:00
parent e82bec6670
commit b03bbaa385
3 changed files with 7 additions and 6 deletions

View file

@ -106,9 +106,10 @@ optionally with the given extra options.
.It stop .It stop
Stop Stop
.Xr tincd 8 . .Xr tincd 8 .
.It restart .It restart Op tincd options
Restart Restart
.Xr tincd 8 . .Xr tincd 8 ,
optionally with the given extra options.
.It reload .It reload
Partially rereads configuration files. Connections to hosts whose host Partially rereads configuration files. Connections to hosts whose host
config files are removed are closed. New outgoing connections specified config files are removed are closed. New outgoing connections specified

View file

@ -2238,8 +2238,8 @@ Start @samp{tincd}, optionally with the given extra options.
@item stop @item stop
Stop @samp{tincd}. Stop @samp{tincd}.
@item restart @item restart [tincd options]
Restart @samp{tincd}. Restart @samp{tincd}, optionally with the given extra options.
@item reload @item reload
Partially rereads configuration files. Connections to hosts whose host Partially rereads configuration files. Connections to hosts whose host

View file

@ -116,7 +116,7 @@ static void usage(bool status) {
" del VARIABLE [VALUE] Remove VARIABLE [only ones with watching VALUE]\n" " del VARIABLE [VALUE] Remove VARIABLE [only ones with watching VALUE]\n"
" start [tincd options] Start tincd.\n" " start [tincd options] Start tincd.\n"
" stop Stop tincd.\n" " stop Stop tincd.\n"
" restart Restart tincd.\n" " restart [tincd options] Restart tincd.\n"
" reload Partially reload configuration of running tincd.\n" " reload Partially reload configuration of running tincd.\n"
" pid Show PID of currently running tincd.\n" " pid Show PID of currently running tincd.\n"
" generate-keys [bits] Generate new RSA and ECDSA public/private keypairs.\n" " generate-keys [bits] Generate new RSA and ECDSA public/private keypairs.\n"
@ -871,7 +871,7 @@ static int cmd_stop(int argc, char *argv[]) {
} }
static int cmd_restart(int argc, char *argv[]) { static int cmd_restart(int argc, char *argv[]) {
cmd_stop(argc, argv); cmd_stop(1, argv);
return cmd_start(argc, argv); return cmd_start(argc, argv);
} }