diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2019-07-31 19:45:29 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2019-07-31 19:45:29 +0200 |
commit | 96e4d0960c2b1bb01dc90ebfe341af8e4284090a (patch) | |
tree | 80a2eee8b929eca43d5a63d483ae1b3a52f98176 /sysdep | |
parent | 8c703ecf73d7ccbd5e767858ba47a5f3ad0bc439 (diff) |
Change 'graceful down' command to 'graceful restart' and update docs
The command initiating planned graceful restart including bird shutdown
should be called 'graceful restart' instead of 'graceful down', as the
later should be reserved for graceful shutdown in style of RFC 8326.
Diffstat (limited to 'sysdep')
-rw-r--r-- | sysdep/unix/config.Y | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdep/unix/config.Y b/sysdep/unix/config.Y index b78e0e6c..c76eb73b 100644 --- a/sysdep/unix/config.Y +++ b/sysdep/unix/config.Y @@ -19,6 +19,7 @@ CF_DECLS CF_KEYWORDS(LOG, SYSLOG, ALL, DEBUG, TRACE, INFO, REMOTE, WARNING, ERROR, AUTH, FATAL, BUG, STDERR, SOFT) CF_KEYWORDS(NAME, CONFIRM, UNDO, CHECK, TIMEOUT, DEBUG, LATENCY, LIMIT, WATCHDOG, WARNING, STATUS) +CF_KEYWORDS(GRACEFUL, RESTART) %type <i> log_mask log_mask_list log_cat cfg_timeout %type <t> cfg_name @@ -133,7 +134,7 @@ CF_CLI(CONFIGURE CHECK, cfg_name, [\"<file>\"], [[Parse configuration and check CF_CLI(DOWN,,, [[Shut the daemon down]]) { cmd_shutdown(); } ; -CF_CLI(GRACEFUL DOWN,,, [[Shut the daemon down for graceful restart]]) +CF_CLI(GRACEFUL RESTART,,, [[Shut the daemon down for graceful restart]]) { cmd_graceful_restart(); } ; |