From 6d16e0a9a3f9757da4f6899beeece3129c46b162 Mon Sep 17 00:00:00 2001 From: David Sommerseth Date: Wed, 1 Jun 2022 15:45:21 +0200 Subject: [PATCH] Release: openvpn-connector-setup v3 This release switches from using openvpn3-autoload to using the systemd openvpn3-session@.service unit by default. This results in a few different behaviours. - Downloaded configuration profiles are imported directly into the OpenVPN 3 Configuration Manager service instead of saving it to a file under /etc/openvpn3/autoload. The imported profile will be stored as a persistent configuration profile. - By default, the imported configuration profile will be started via the openvpn3-session@OpenVPNCloud.service unit. If the --name argument was provided, that will be used instead of 'OpenVPNCloud'. * New option: --mode The default mode is 'systemd-unit'. To switch back to the old behaviour, the 'autoload' mode can be used. The autoload mode will save the downloaded configuration file to /etc/openvpn3/autoload and create the affiliated .autoload configuration. The openvpn3-autload.service unit is also started. * Renamed --no-systemd to --no-start This option disables starting the VPN connection after the import. In systemd-unit mode, that means the openvpn3-session@.service unit is not started. For autoload mode, the openvpn3-autoload.service is not started. * Renamed --config-filename to --autoload-file-prefix The new option indicates better that this only impacts the autoload mode and the files which is created. Signed-off-by: David Sommerseth --- version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.py b/version.py index ae62ff5..3458892 100644 --- a/version.py +++ b/version.py @@ -18,4 +18,4 @@ # along with this program. If not, see . # -ocs_version='2' +ocs_version='3'