From: Jonatan Schlag <jonatan.schlag@ipfire.org>
To: network@lists.ipfire.org
Subject: [PATCH 5/5] header-config: add generic hook_edit function
Date: Mon, 17 Jul 2017 17:24:26 +0200 [thread overview]
Message-ID: <1500305066-12510-5-git-send-email-jonatan.schlag@ipfire.org> (raw)
In-Reply-To: <1500305066-12510-1-git-send-email-jonatan.schlag@ipfire.org>
[-- Attachment #1: Type: text/plain, Size: 1855 bytes --]
If a hook_parse-cmdline function exists
this functions allows it do edit the hook safely.
Signed-off-by: Jonatan Schlag <jonatan.schlag(a)ipfire.org>
---
| 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 54 insertions(+)
--git a/src/header-config b/src/header-config
index b697797..e3c6423 100644
--- a/src/header-config
+++ b/src/header-config
@@ -22,3 +22,57 @@
hook_new() {
cmd_not_implemented
}
+
+hook_edit() {
+ local zone=${1}
+ local config=${2}
+ shift 2
+
+ local hook=$(config_get_hook_from_config ${config})
+ local id=$(config_get_id_from_config ${config})
+
+ assert isset hook
+ assert isset id
+
+ if ! zone_exists ${zone}; then
+ error "Zone '${zone}' doesn't exist."
+ exit ${EXIT_ERROR}
+ fi
+
+ # Bring the config down
+ if device_exists ${zone}; then
+ if ! hook_config_cmd "down" "${zone}" "${hook}" "${hook}.${id}"; then
+ log ERROR "Could not bring config ${config} down for zone ${zone}"
+ return ${EXIT_ERROR}
+ fi
+ fi
+
+ local ${HOOK_CONFIG_SETTINGS}
+
+ # If reading the config fails we cannot go on
+ if ! zone_config_settings_read "${zone}" "${config}"; then
+ log ERROR "Could read the config ${config} for zone ${zone}"
+ return ${EXIT_ERROR}
+ fi
+
+ if ! hook_parse_cmdline $@; then
+ # Return an error if the parsing of the cmd line fails
+ return ${EXIT_ERROR}
+ fi
+
+ # Write the settings to the config file
+ if ! zone_config_settings_write "${zone}" "${hook}" ${id}; then
+ log ERROR "Could not write config settings file ${config} for ${zone}"
+ return ${EXIT_ERROR}
+ fi
+
+ # Bring the config up
+ if device_exists ${zone}; then
+ if ! hook_config_cmd "up" "${zone}" "${hook}" "${hook}.${id}"; then
+ log ERROR "Could not bring config ${config} up for zone ${zone}"
+ return ${EXIT_ERROR}
+ fi
+ fi
+
+ exit ${EXIT_OK}
+}
--
2.6.3
next prev parent reply other threads:[~2017-07-17 15:24 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-07-17 15:24 [PATCH 1/5] zone: fix zone_config() Jonatan Schlag
2017-07-17 15:24 ` [PATCH 2/5] header-zone fix hook_config_edit() Jonatan Schlag
2017-07-17 20:21 ` Michael Tremer
2017-07-17 15:24 ` [PATCH 3/5] dhcp: check the config indide the hook_parse_cmdline() function Jonatan Schlag
2017-07-17 15:24 ` [PATCH 4/5] config: add new functions Jonatan Schlag
2017-07-17 20:22 ` Michael Tremer
2017-07-17 20:23 ` Michael Tremer
2017-07-17 15:24 ` Jonatan Schlag [this message]
2017-07-17 20:20 ` [PATCH 1/5] zone: fix zone_config() 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=1500305066-12510-5-git-send-email-jonatan.schlag@ipfire.org \
--to=jonatan.schlag@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