From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: network@lists.ipfire.org
Subject: [PATCH 2/3] route: rename route to route static
Date: Wed, 07 Jun 2017 08:17:38 +0200 [thread overview]
Message-ID: <1496816259-6219-2-git-send-email-jonatan.schlag@ipfire.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 1560 bytes --]
Fixes: #11374
Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
src/bash-completion/network | 19 +++++++++++++++++++
src/network | 26 ++++++++++++++++++++++++++
2 files changed, 45 insertions(+)
diff --git a/src/bash-completion/network b/src/bash-completion/network
index 27272e9..ae358bd 100644
--- a/src/bash-completion/network
+++ b/src/bash-completion/network
@@ -258,6 +258,25 @@ _network_port_subcommand() {
_network_route() {
local words=( $@ )
+ local commands="static"
+ local cmd="$(_network_find_on_cmdline "${commands}")"
+ if [[ -z "${cmd}" ]]; then
+ COMPREPLY=( $(compgen -W "${commands}" -- "${cur}") )
+ return 0
+ fi
+
+ case "${cmd}" in
+ static)
+ local args="${words[@]}"
+ _network_route_static ${args}
+ ;;
+ esac
+
+}
+
+_network_route_static() {
+ local words=( $@ )
+
local commands="add list remove reload"
local cmd="$(_network_find_on_cmdline "${commands}")"
if [[ -z "${cmd}" ]]; then
diff --git a/src/network b/src/network
index fbb7e9a..4d5955f 100644
--- a/src/network
+++ b/src/network
@@ -752,6 +752,32 @@ cli_route() {
shift
case "${action}" in
+ static)
+ cli_route_static $@
+ ;;
+ *)
+ error "Unrecognized action: ${action}"
+ cli_run_help network route
+
+ exit ${EXIT_ERROR}
+ ;;
+ esac
+
+ exit ${EXIT_OK}
+
+
+}
+
+cli_route_static() {
+ if cli_help_requested $@; then
+ cli_show_man network-route-static
+ exit ${EXIT_OK}
+ fi
+
+ local action=${1}
+ shift
+
+ case "${action}" in
# Add a new route.
add)
route_add $@
--
2.6.3
next reply other threads:[~2017-06-07 6:17 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-06-07 6:17 Jonatan Schlag [this message]
2017-06-07 6:17 ` [PATCH 3/3] route: update documentation Jonatan Schlag
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=1496816259-6219-2-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