public inbox for network@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH] route: add new cli command reload
@ 2017-06-04 14:09 Jonatan Schlag
  0 siblings, 0 replies; only message in thread
From: Jonatan Schlag @ 2017-06-04 14:09 UTC (permalink / raw)
  To: network

[-- Attachment #1: Type: text/plain, Size: 1257 bytes --]

This new command just call route_apply.
It provide a nice way to take changes of the config file into affect.
Also it helps when the routes are not applied.
This should not happen, but when this command is better then network restart.

Fixes: 11367

Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
 src/bash-completion/network | 2 +-
 src/network                 | 4 ++++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/src/bash-completion/network b/src/bash-completion/network
index 6f63f1b..27272e9 100644
--- a/src/bash-completion/network
+++ b/src/bash-completion/network
@@ -258,7 +258,7 @@ _network_port_subcommand() {
 _network_route() {
 	local words=( $@ )
 
-	local commands="add list remove"
+	local commands="add list remove reload"
 	local cmd="$(_network_find_on_cmdline "${commands}")"
 	if [[ -z "${cmd}" ]]; then
 		COMPREPLY=( $(compgen -W "${commands}" -- "${cur}") )
diff --git a/src/network b/src/network
index e65eb6b..fbb7e9a 100644
--- a/src/network
+++ b/src/network
@@ -765,6 +765,10 @@ cli_route() {
 			route_list $@
 			return ${EXIT_OK}
 			;;
+		# Reload all routes.
+		reload)
+			route_apply $@
+			;;
 		*)
 			error "Unrecognized action: ${action}"
 			cli_run_help network route
-- 
2.6.3


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-06-04 14:09 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-04 14:09 [PATCH] route: add new cli command reload Jonatan Schlag

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox