From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH 7/8] zone: change edit syntax for config. Date: Wed, 05 Jul 2017 16:19:52 +0200 Message-ID: <1499264393-13700-7-git-send-email-jonatan.schlag@ipfire.org> In-Reply-To: <1499264393-13700-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6037242203366302585==" List-Id: --===============6037242203366302585== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable The syntax to edit a config is now network zone upl0 config edit similar to the syntax if a zone is edited. The cmd variable is setted to the content of ${1}, because we need the content in this variable if the ${id} is not valid, to pr= int a nice error message. Signed-off-by: Jonatan Schlag --- src/functions/functions.zone | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/src/functions/functions.zone b/src/functions/functions.zone index 441bf5f..776b63b 100644 --- a/src/functions/functions.zone +++ b/src/functions/functions.zone @@ -556,9 +556,18 @@ zone_config() { zone_config_edit "${zone}" "$@" ;; *) - error "Unrecognized argument: ${cmd}" - cli_usage root-zone-config-subcommands - exit ${EXIT_ERROR} + # Check is we get a valid id + # TODO This could be also a valid hid + local id=3D${cmd} + + if zone_config_id_is valid ${zone} ${id} && [[ ${1} =3D=3D "edit" ]]; then + shift 1 + zone_config_edit "${zone}" "${id}""$@" + else + error "Unrecognized argument: ${cmd}" + cli_usage root-zone-config-subcommands + exit ${EXIT_ERROR} + fi ;; esac } --=20 2.6.3 --===============6037242203366302585==--