From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH v2 3/8] zone: config list print also hids Date: Wed, 26 Jul 2017 10:44:39 +0200 Message-ID: <1501058684-19861-3-git-send-email-jonatan.schlag@ipfire.org> In-Reply-To: <1501058684-19861-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6716296408454248770==" List-Id: --===============6716296408454248770== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Signed-off-by: Jonatan Schlag --- 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 90dfbc6..7947d9a 100644 --- a/src/functions/functions.zone +++ b/src/functions/functions.zone @@ -637,21 +637,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 --===============6716296408454248770==--