From 0457f34c2136f19b03bc79ccab9df87a4afd05ad Mon Sep 17 00:00:00 2001 From: Joseph Nuthalapati Date: Thu, 21 Feb 2019 13:31:40 +0530 Subject: [PATCH] openvpn: Increment version number for easy-rsa 3 migration Signed-off-by: Joseph Nuthalapati Reviewed-by: Sunil Mohan Adapa --- plinth/modules/openvpn/__init__.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/plinth/modules/openvpn/__init__.py b/plinth/modules/openvpn/__init__.py index ebfae2e92..fa4df1b70 100644 --- a/plinth/modules/openvpn/__init__.py +++ b/plinth/modules/openvpn/__init__.py @@ -21,14 +21,14 @@ FreedomBox app to configure OpenVPN server. from django.urls import reverse_lazy from django.utils.translation import ugettext_lazy as _ -from plinth import service as service_module from plinth import action_utils, actions, cfg, frontpage +from plinth import service as service_module from plinth.menu import main_menu from plinth.utils import format_lazy from .manifest import backup -version = 2 +version = 3 service = None @@ -57,8 +57,7 @@ manual_page = 'OpenVPN' def init(): """Initialize the OpenVPN module.""" menu = main_menu.get('apps') - menu.add_urlname(name, 'openvpn', 'openvpn:index', - short_description) + menu.add_urlname(name, 'openvpn', 'openvpn:index', short_description) global service setup_helper = globals()['setup_helper']