From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH v2 4/5] network: add color commands Date: Thu, 15 Jun 2017 18:18:52 +0200 Message-ID: <1497543533-5925-4-git-send-email-jonatan.schlag@ipfire.org> In-Reply-To: <1497543533-5925-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============2105362274429329615==" List-Id: --===============2105362274429329615== 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..ea7f7d6 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 --===============2105362274429329615==--