From: Michael Tremer <michael.tremer@ipfire.org>
To: network@lists.ipfire.org
Subject: Re: [PATCH 2/3] header-zone: refactor hook_config_edit
Date: Fri, 14 Jul 2017 19:56:02 -0400 [thread overview]
Message-ID: <1500076562.2325.1.camel@ipfire.org> (raw)
In-Reply-To: <1500059452-3421-2-git-send-email-jonatan.schlag@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1612 bytes --]
Hi,
and no no no no. We cannot restart the zone just because some
configuration is being changed. That would disrupt connections and that
might not always be required.
The hook_up() and hook_down() functions are usually designed to take
care of this and check if a zone is already up and potentially only
change the settings that need to be changed.
That will allow to edit things on a live system without disrupting any
users which I think is very important.
-Michael
On Fri, 2017-07-14 at 21:10 +0200, Jonatan Schlag wrote:
> Before a config is edit we should bring the config down and after up
> again.
> Also we need to have 2 arguments or more.
>
> Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
> ---
> src/header-zone | 9 ++++++++-
> 1 file changed, 8 insertions(+), 1 deletion(-)
>
> diff --git a/src/header-zone b/src/header-zone
> index 2e3fa09..3b074ee 100644
> --- a/src/header-zone
> +++ b/src/header-zone
> @@ -225,7 +225,7 @@ hook_config_destroy() {
> }
>
> hook_config_edit() {
> - assert [ $# -eq 2 ]
> + assert [ $# -ge 2 ]
> local zone=${1}
> # The id must be the id and not the hid.
> local id=${2}
> @@ -240,7 +240,14 @@ hook_config_edit() {
> local hook=$(zone_config_get_hook_from_id ${zone} ${id})
> assert isset hook
>
> + # Bring the config down
> + hook_config_cmd "down" "${zone}" "${hook}" "${hook}.${id}"
> +
> + # Edit the hook
> hook_config_cmd "edit" "${zone}" "${hook}" "${hook}.${id}"
> "$@"
> +
> + # Bring the config up again
> + hook_config_cmd "up" "${zone}" "${hook}" "${hook}.${id}"
> }
>
> hook_config_show() {
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 819 bytes --]
next prev parent reply other threads:[~2017-07-14 23:56 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-14 19:10 [PATCH 1/3] zone: fix zone_config() Jonatan Schlag
2017-07-14 19:10 ` [PATCH 2/3] header-zone: refactor hook_config_edit Jonatan Schlag
2017-07-14 23:56 ` Michael Tremer [this message]
2017-07-14 19:10 ` [PATCH 3/3] dhcp: add hook_edit() function Jonatan Schlag
2017-07-15 0:53 ` Michael Tremer
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1500076562.2325.1.camel@ipfire.org \
--to=michael.tremer@ipfire.org \
--cc=network@lists.ipfire.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox