From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH 5/7] cli: print the description title Date: Mon, 19 Jun 2017 21:20:48 +0200 Message-ID: <1497900050-27692-5-git-send-email-jonatan.schlag@ipfire.org> In-Reply-To: <1497900050-27692-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============7308228406138770486==" List-Id: --===============7308228406138770486== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Jonatan Schlag --- src/functions/functions.cli | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/functions/functions.cli b/src/functions/functions.cli index 5efd923..1bd99dd 100644 --- a/src/functions/functions.cli +++ b/src/functions/functions.cli @@ -113,6 +113,17 @@ cli_device_headline() { esac cli_print_fmt1 1 "Status" "${status}" + # Print the description title of the device. + case "${type}" in + port) + cli_print_fmt1 1 "Description" "$(port_get_description_title ${device})" + ;; + + zone) + cli_print_fmt1 1 "Description" "$(zone_get_description_title ${device})" + ;; + esac + # Print the color of the device. case "${type}" in port) -- 2.6.3 --===============7308228406138770486==--