From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag <jonatan.schlag@ipfire.org> To: network@lists.ipfire.org Subject: [PATCH 3/8] zone: config list print also hids Date: Tue, 25 Jul 2017 18:07:08 +0200 Message-ID: <1500998833-10543-4-git-send-email-jonatan.schlag@ipfire.org> In-Reply-To: <1500998833-10543-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============0316896843306935687==" List-Id: <network.lists.ipfire.org> --===============0316896843306935687== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org> --- src/functions/functions.zone | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/functions/functions.zone b/src/functions/functions.zone index 091bcd6..17d0858 100644 --- a/src/functions/functions.zone +++ b/src/functions/functions.zone @@ -634,21 +634,22 @@ zone_config_list() { assert isset zone # Print a nice header - local format="%-3s %-20s" - print "${format}" "ID" "HOOK" + local format="%-3s %-20s %-20s" + print "${format}" "ID" "HOOK" "HID" local config local hook local id + local hid # Print for all config: # id and hook - # TODO: Add hids here for config in $(zone_configs_list "${zone}"); do id=${config##*.} hook=$(zone_config_get_hook "${zone}" "${config}") + hid=$(zone_config_get_hid "${zone}" "${config}") assert isset hook - print "${format}" "${id}" "${hook}" + print "${format}" "${id}" "${hook}" "${hid}" done } -- 2.6.3 --===============0316896843306935687==--