public inbox for network@lists.ipfire.org
 help / color / mirror / Atom feed
From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: network@lists.ipfire.org
Subject: [PATCH] route: add new cli command reload
Date: Sun, 04 Jun 2017 16:09:07 +0200	[thread overview]
Message-ID: <1496585347-4063-1-git-send-email-jonatan.schlag@ipfire.org> (raw)

[-- 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


                 reply	other threads:[~2017-06-04 14:09 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1496585347-4063-1-git-send-email-jonatan.schlag@ipfire.org \
    --to=jonatan.schlag@ipfire.org \
    --cc=network@lists.ipfire.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox