From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH 2/8] zone: new function zone_config_id_is_valid Date: Wed, 05 Jul 2017 16:19:47 +0200 Message-ID: <1499264393-13700-2-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="===============2436651678420456050==" List-Id: --===============2436651678420456050== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit This function is needed to implement the id feature described in #11405 Signed-off-by: Jonatan Schlag --- src/functions/functions.zone | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/src/functions/functions.zone b/src/functions/functions.zone index b44d3b5..fcc7bfa 100644 --- a/src/functions/functions.zone +++ b/src/functions/functions.zone @@ -1048,6 +1048,19 @@ zone_config_hook_is_configured() { return ${EXIT_FALSE} } +zone_config_id_is_valid() { + # This function checks if a given id is valid for a zone + # Return True when yes and false when no + + assert [ $# -eq 2 ] + local zone=${1} + local id=${2} + + local zone_path=$(zone_dir ${zone}) + + [ -f ${zone_path}/configs/*.${id} ]; +} + zone_has_ip() { device_has_ip $@ } -- 2.6.3 --===============2436651678420456050==--