
OpenVPN Connect
Silent install package for OpenVPN Connect
3.7.1.5558-3
- package: tis-openvpn-connect
- name: OpenVPN Connect
- version: 3.7.1.5558-3
- maintainer: WAPT Team,Tranquil IT,Amel FRADJ
- licence: OpenVPN 3 is distributed under GNU Affero General Public License version 3 with a special permission to link against OpenSSL
- target_os: darwin
- impacted_process: OpenVPNConnect
- architecture: arm
- signature_date:
- size: 111.06 Mo
- installed_size: 314.46 Mo
- homepage : https://openvpn.net/
- conflicts :
package : tis-openvpn-connect
version : 3.7.1.5558-3
architecture : arm
section : base
priority : optional
name : OpenVPN Connect
categories :
maintainer : WAPT Team,Tranquil IT,Amel FRADJ
description : OpenVPN Connect is a free and full-featured VPN Client
depends :
conflicts : tis-openvpn
maturity : PROD
locale :
target_os : darwin
min_wapt_version : 2.5
sources :
installed_size : 314462208
impacted_process : OpenVPNConnect
description_fr : OpenVPN Connect est un client VPN gratuit et complet
description_pl : OpenVPN Connect to darmowy i w pełni funkcjonalny klient VPN
description_de : OpenVPN Connect ist ein kostenloser und voll funktionsfähiger VPN-Client
description_es : OpenVPN Connect es un cliente VPN completo y gratuito
description_pt : O OpenVPN Connect é um cliente VPN gratuito e com todas as funcionalidades
description_it : OpenVPN Connect è un client VPN gratuito e completo
description_nl : OpenVPN Connect is een gratis en volledige VPN-client
description_ru : OpenVPN Connect - бесплатный и полнофункциональный VPN-клиент
audit_schedule :
editor :
keywords :
licence : OpenVPN 3 is distributed under GNU Affero General Public License version 3 with a special permission to link against OpenSSL
homepage : https://openvpn.net/
package_uuid : ccaf31b1-f8f7-437a-a983-c75af05a64e7
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version : 10.15
max_os_version :
icon_sha256sum : 6a972bef440796530e09d50762042dd9846b0acc6f85f75f9e41346fb43a53bc
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-08-26T09:03:53.000000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_wapt_version,sources,installed_size,impacted_process,description_fr,description_pl,description_de,description_es,description_pt,description_it,description_nl,description_ru,audit_schedule,editor,keywords,licence,homepage,package_uuid,valid_from,valid_until,forced_install_on,changelog,min_os_version,max_os_version,icon_sha256sum,signer,signer_fingerprint,signature_date,signed_attributes
signature : uBvI7ZkiVYJQMOtOEkcFsW2fZK6akEH0juuVl0EyTPJgeSBrBGPBw/B7/KSxElw2fFAET/s8AziMuKvTs7vJTw7SX/6ZH+ct1s/hBhbsSpH/+l7t2L/ESO56QhZFmBu8eRdpG8+vmtcX+Fyh7qYvleEEdUGyR6iE/NjFyusSKM7QYlmu+dBzhHExBrUO1HSC1orDGzNGgi/lztdjiCHaUtdJmLLdmAO0snI/y4NXTZ8fCxssqEIL+zB5XIznteCoYluTTNxNcya/4VjyYIl/vjlw7Y9vcsjrnpyQl0Hzn+oWlVe6N9ZLz61Pd06d2THwme50fqaixLFUpRt4hass0w==
# -*- coding: utf-8 -*-
from setuphelpers import *
def install():
install_pkg(glob.glob("OpenVPN_*.pkg")[0])
def uninstall():
remove_tree(r"/Applications/OpenVPN Connect/OpenVPN Connect.app")
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
import waptlicences
def update_package():
# Declaring local variables
package_updated = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
download_url = "https://openvpn.net/downloads/openvpn-connect-v3-macos.dmg"
latest_bin = requests.head(download_url).headers["Location"].rsplit("/")[-1]
latest_bin_extension = latest_bin.rsplit('.', 1)[-1]
version = latest_bin.split("-")[-1].split("_")[0]
# Downloading latest binaries
print(f"Download URL is: {download_url}")
if not isfile(latest_bin):
print(f"Downloading: {latest_bin}")
wget(download_url, latest_bin, proxies=proxies)
else:
print(f"Binary is present: {latest_bin}")
# Changing version of the package
if Version(version) > Version(control.get_software_version()):
print(f"Software version updated (from: {control.get_software_version()} to: {Version(version)})")
package_updated = True
else:
print(f"Software version up-to-date ({Version(version)})")
for f in glob.glob(f'*.{latest_bin_extension}'):
if f != latest_bin:
remove_file(f)
dmg_mount_path = mount_dmg(glob.glob('openvpn-*.dmg')[0])
try:
pkg_file = glob.glob(f"{dmg_mount_path}/*_arm64*.pkg")[0]
filecopyto(pkg_file,basedir)
unmount_dmg(dmg_mount_path)
remove_file(latest_bin)
except Exception:
unmount_dmg(dmg_mount_path)
raise
control.set_software_version(version)
control.save_control_to_wapt()
return package_updated
c6418b8d1fe3ff8485dc72ce4fe80a15fc573e160885ac7d3f6ec8f3d879c2bc : OpenVPN_Connect_3_7_1(5558)_arm64_Installer_signed.pkg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
652cdf250a1dffc2e39ff77f49b11c24277a9693a64d2d3eaf675a4ed02f40d9 : WAPT/control
6a972bef440796530e09d50762042dd9846b0acc6f85f75f9e41346fb43a53bc : WAPT/icon.png
8294752f9a89eba8a5d47737b91f83020840104b5572169996e7f5022b507b40 : luti.json
7cd84eda0a9ed5408c024cdefc896ef5f03348f3bc4d0d4a42960dcf651b4a55 : setup.py
b874fb182ba525ee0d0c7865d13b6659ed8b1bd33d049b493764aab1c0a0e125 : update_package.py