From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH 2/2] ipsec-pools: reload pools after destroying pools Date: Wed, 16 Aug 2017 17:36:56 +0200 Message-ID: <1502897816-14789-2-git-send-email-jonatan.schlag@ipfire.org> In-Reply-To: <1502897816-14789-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============3952728940908543447==" List-Id: --===============3952728940908543447== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Fixes: #11433 Signed-off-by: Jonatan Schlag --- src/functions/functions.ipsec-pool | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/functions/functions.ipsec-pool b/src/functions/functions.ips= ec-pool index 86ba81d..8bdd55c 100644 --- a/src/functions/functions.ipsec-pool +++ b/src/functions/functions.ipsec-pool @@ -243,6 +243,8 @@ ipsec_pool_destroy() { return ${EXIT_ERROR} fi done + + ipsec_strongswan_load_pools } =20 ipsec_pool_set_type() { @@ -436,3 +438,16 @@ ipsec_list_pools() { basename ${pool} done } + +# Reload all strongswan pools +ipsec_strongswan_load_pools() { + # Do nothing if strongswan is not running + if ! service_is_active "strongswan"; then + return ${EXIT_OK} + fi + + if ! cmd swanctl --load-pools; then + log ERROR "Could not reload strongswan pools" + return ${EXIT_ERROR} + fi +} --=20 2.6.3 --===============3952728940908543447==--