
OpenVPN Connect
Paquet d’installation silencieuse pour 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: x64
- signature_date:
- size: 117.02 Mo
- installed_size: 314.46 Mo
- homepage : https://openvpn.net/
- conflicts :
package : tis-openvpn-connect
version : 3.7.1.5558-3
architecture : x64
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 : f4d55dd6-ee87-472c-bcce-45ad87428bf2
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:00:24.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 : YBcryX/rNOIpbERoSxX6XvyYtcH8CqKZL8LKIq5UVd0kACylo/etHQJH0XWPL8uFH457WTSo9vvf5dLh3l4dHxnFKtcSUeucT/yvXyAuSQHiXI7zMf++bU0TNzsU05bO7f4ga4k6RFoQd918XSlcU4EtH+OdpBVOzLsb/aW4ZQASr6vGMb7YR4VoiNzBPgrcEN5YsyvNLEX2zgCKwPp6U2c/YcniypWGoaRFiBRAU9akFSvJawdf0bmcDOpFuUBmlOvDI3ZTEVQZTxEKvVQPHKyqnfZuNryiYNXWCRtciDVHTafcgVG7bJrMH+qjJTb1XyRfJRbPpd7p0hcoxQURzQ==
# -*- 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}/*x86_64*.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
421cb8f0f72e016cb66aae5637ed91851164487b96d7753dbf512245f50c744c : OpenVPN_Connect_3_7_1(5558)_x86_64_Installer_signed.pkg
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
04908938eb45569f8df805e5d9a39c051590433a8b4ea1c1aa243221cabf48e8 : WAPT/control
6a972bef440796530e09d50762042dd9846b0acc6f85f75f9e41346fb43a53bc : WAPT/icon.png
ba059c2ab6aef25c5d5b9f7f4aad02a5fb88b0f8cc37df4d7f4a3f86e0eef89e : luti.json
7cd84eda0a9ed5408c024cdefc896ef5f03348f3bc4d0d4a42960dcf651b4a55 : setup.py
adfa0ad7ccfbe127a2df8ac93936f80fd0d158b3e1f30a065e78738a2c18cd50 : update_package.py