From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH 5/6] network: add color commands Date: Fri, 09 Jun 2017 12:17:31 +0200 Message-ID: <1497003452-10190-5-git-send-email-jonatan.schlag@ipfire.org> In-Reply-To: <1497003452-10190-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7957364908636431504==" List-Id: --===============7957364908636431504== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Jonatan Schlag --- src/network | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/network b/src/network index e0d57a0..1bccdea 100644 --- a/src/network +++ b/src/network @@ -518,6 +518,9 @@ cli_port() { edit|create|remove|up|down|status|identify) port_${action} "${port}" $@ ;; + color) + color_cli "port" "${port}" $@ + ;; *) error "Unrecognized argument: ${action}" exit ${EXIT_ERROR} @@ -576,6 +579,9 @@ cli_zone() { config|disable|down|edit|enable|identify|status|up) zone_${action} ${zone} $@ ;; + color) + color_cli "zone" "${zone}" $@ + ;; *) error "Unrecognized argument: ${action}" cli_show_man network-zone -- 2.6.3 --===============7957364908636431504==--