From a0bab424ce459468432fcfe7d0323f43bcdf0c40 Mon Sep 17 00:00:00 2001 From: Stefan Schantl Date: Sat, 22 Jun 2019 09:52:37 +0000 Subject: [PATCH] Fix creating new configs The id argument was missing for the zone_config_settings_write. Signed-off-by: Stefan Schantl --- src/header-config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/header-config b/src/header-config index c6a775c5..ed647cdf 100644 --- a/src/header-config +++ b/src/header-config @@ -45,7 +45,7 @@ hook_new() { fi # Write configuration to disk - if ! zone_config_settings_write "${zone}" "${HOOK}"; then + if ! zone_config_settings_write "${zone}" "${HOOK}" "${id}"; then return ${EXIT_ERROR} fi -- 2.39.2