diff --git a/WAPT/control b/WAPT/control index dda5226..7b17d95 100644 --- a/WAPT/control +++ b/WAPT/control @@ -1,5 +1,5 @@ package : fws-openvpn -version : 2.4.6-7 +version : 2.4.7-3 architecture : all section : base priority : optional diff --git a/openvpn-install-2.4.6-I602.exe b/openvpn-install-2.4.6-I602.exe deleted file mode 100644 index fffe7c2..0000000 Binary files a/openvpn-install-2.4.6-I602.exe and /dev/null differ diff --git a/openvpn-install-2.4.7-I603.exe b/openvpn-install-2.4.7-I603.exe new file mode 100644 index 0000000..28c427b Binary files /dev/null and b/openvpn-install-2.4.7-I603.exe differ diff --git a/setup.py b/setup.py index bbf3a86..da8d5e3 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ def install(): run(r'certutil.exe -addstore trustedpublisher openvpn.p7b') print('Installing OpenVPN client') - install_exe_if_needed('openvpn-install-%s-I602.exe' % version,'/S',key='OpenVPN',min_version='%s-I602' % version,killbefore=['openvpn','openvpn-gui']) + install_exe_if_needed('openvpn-install-%s-I603.exe' % version,'/S',key='OpenVPN',min_version='%s-I602' % version,killbefore=['openvpn','openvpn-gui']) uninstallkey.append('TAP-Windows') if 'openvpn_config' in variables: @@ -37,12 +37,12 @@ def update_package(): current_version = control['version'].split('-',1)[0] if Version(latest_version) > Version(current_version): print('Updating Package from %s to %s' % (current_version, latest_version)) - if not isfile('openvpn-install-%s-I602.exe' % latest_version): - url = 'https://swupdate.openvpn.org/community/releases/openvpn-install-%s-I602.exe' % latest_version + if not isfile('openvpn-install-%s-I603.exe' % latest_version): + url = 'https://swupdate.openvpn.org/community/releases/openvpn-install-%s-I603.exe' % latest_version print('downloading %s' % url) wget(url, os.getcwd()) for file in glob.glob('*.exe'): - if file != 'openvpn-install-%s-I602.exe' % latest_version: + if file != 'openvpn-install-%s-I603.exe' % latest_version: print('Removing %s' % file) remove_file(file) pe.version = latest_version + '-0'