openvpn: Increment version number for easy-rsa 3 migration

Signed-off-by: Joseph Nuthalapati <njoseph@thoughtworks.com>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
Joseph Nuthalapati 2019-02-21 13:31:40 +05:30 committed by James Valleroy
parent 544c317cd2
commit 0457f34c21
No known key found for this signature in database
GPG Key ID: 77C0C75E7B650808

View File

@ -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']