From mboxrd@z Thu Jan 1 00:00:00 1970 From: Michael Tremer To: development@lists.ipfire.org Subject: [PATCH 2/2] openvpnctrl: Update CRL before starting the client daemon Date: Fri, 07 Oct 2022 14:50:17 +0000 Message-ID: <20221007145017.4096212-2-michael.tremer@ipfire.org> In-Reply-To: <20221007145017.4096212-1-michael.tremer@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============6293297230313770495==" List-Id: --===============6293297230313770495== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable If the CRL is outdated for some reason (e.g. a backup restored from ISO where we don't run the migration scripts), this will update it on reboot/restart of the service. Signed-off-by: Michael Tremer --- src/misc-progs/openvpnctrl.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/misc-progs/openvpnctrl.c b/src/misc-progs/openvpnctrl.c index b9e4fd2a6..92b5989e9 100644 --- a/src/misc-progs/openvpnctrl.c +++ b/src/misc-progs/openvpnctrl.c @@ -497,6 +497,8 @@ void startDaemon(void) { fprintf(stderr, "OpenVPN is not enabled on any interface\n"); exit(1); } else { + snprintf(command, STRING_SIZE-1, "/etc/fcron.daily/openvpn-crl-updater"); + executeCommand(command); snprintf(command, STRING_SIZE-1, "/sbin/modprobe tun"); executeCommand(command); snprintf(command, STRING_SIZE-1, "/usr/sbin/openvpn --config /var/ipfire/o= vpn/server.conf"); --=20 2.30.2 --===============6293297230313770495==--