public inbox for network@lists.ipfire.org
 help / color / mirror / Atom feed
* [PATCH 2/3] route: rename route to route static
@ 2017-06-07  6:17 Jonatan Schlag
  2017-06-07  6:17 ` [PATCH 3/3] route: update documentation Jonatan Schlag
  0 siblings, 1 reply; 2+ messages in thread
From: Jonatan Schlag @ 2017-06-07  6:17 UTC (permalink / raw)
  To: network

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


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2017-06-07  6:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-06-07  6:17 [PATCH 2/3] route: rename route to route static Jonatan Schlag
2017-06-07  6:17 ` [PATCH 3/3] route: update documentation Jonatan Schlag

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