Update to 9.2.0.0

This commit is contained in:
Daniel Berteaud 2023-03-28 14:59:22 +02:00
parent e418500601
commit 94fbf57bfa
4 changed files with 21 additions and 20 deletions

BIN
OpenSSH-Win32.zip (Stored with Git LFS)

Binary file not shown.

BIN
OpenSSH-Win64.zip (Stored with Git LFS)

Binary file not shown.

View File

@ -1,24 +1,22 @@
package : fws-openssh
version : 8.6.0.0-2
package : eht-openssh
version : 9.2.0.0-2
architecture : all
section : base
priority : optional
name :
categories :
maintainer : Daniel Berteaud <daniel@firewall-services.com>
maintainer : Daniel Berteaud <dbd@ehtrace.com>
description : OpenSSH for Windows
depends : fws-7zip
depends : eht-7zip
conflicts :
maturity : PROD
locale :
target_os : windows
min_os_version : 6.1
max_os_version :
min_wapt_version : 1.5
sources :
installed_size :
impacted_process : sshd.exe,ssh.exe
description_fr : OpenSSH pour WIndows
description_fr : OpenSSH pour Windows
description_pl :
description_de :
description_es :
@ -31,13 +29,16 @@ editor :
keywords : ssh
licence :
homepage : https://github.com/PowerShell/Win32-OpenSSH
package_uuid : faa91923-7491-4d26-a03c-edb431b24485
package_uuid : cbfa5262-25d8-4b08-aea1-0b1b13a9bf25
valid_from :
valid_until :
forced_install_on :
changelog :
signer : Daniel Berteaud
signer_fingerprint: 3c9415559e2dedbc4390e3faa2c28d3b67265baa5b35902d2764d9e41c3b3f0a
signature : SthdIq4FVrqExXc9NjehHHEUzdXVVDfraX+aIqMRr1gExERMaFQza7P9WMYZSbLLVRJgELgIXY3gNygni01j4RrUgP3mWgphqVZBoFjCEHAQs/FG6QkrH6mIwzFezZ/1XGKsHLI97JhDhhoF+WTxFa7C6PA29ZkZQTjxb4XokmUL5hAGvDuaLxpC6poxApAtLez5OhuCILbfZSgirlWH+NwFnfEKl7cEvW7wptbZXSHswkdeXuGfHDIfmEVJLq/c9W+C662ezpwTenQLIc9vQT65fnBcJYVUTWbG7zVWh5GOm+C6761UzeZaJOP/ND7qpZtaVr6dVpr73Kr0AQZ6GQ==
signature_date : 2021-06-09T09:24:24.553000
signed_attributes : package,version,architecture,section,priority,name,categories,maintainer,description,depends,conflicts,maturity,locale,target_os,min_os_version,max_os_version,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,signer,signer_fingerprint,signature_date,signed_attributes
min_os_version : 6.1
max_os_version :
icon_sha256sum :
signer : dbd
signer_fingerprint: e9156ec73f1ea6b50f33e0d9f580e8ae56db147100894bb5d2d4648a46f07ed1
signature : L6df4KsNPukUD6P3So6hWmlBnEjWYypK4b/JM7Z0mKiMrl6avrTALbyEZtG11G6byVwuA5//oAym8IXvXpJSUOskdyGShoGMEENgeuO2bVOMWM4PK1melrhvMW+LnnqBDDsOn8S23qGmIRA5VxdfT6NW3j9rAm0Y2hly3zQafM+HLWuF9FiDnKo0txoPW1o5cAdcRSKdpATLc0oOkNBQkNzrt+Fc2BqLaSJ2+BGA5wNkaSnskLnF9RIs+jUWvXTw1Ui8M2tJzIeQm+dEtrcDglQwhZzvFFWmdkfwb9PGJogcPWzItds2p+mieHaxoH5+ZD2Juu5MuFCeVoj0Z9/AZw==
signature_date : 2023-03-28T14:58:30.326696
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

View File

@ -15,8 +15,8 @@ if isfile(makepath(programfiles32,'wapt','private','symetric.txt')) and isfile(m
print('Reading local encrypted variables file')
from cryptography.fernet import Fernet
import yaml
f = Fernet(open(makepath(programfiles32,'wapt','private','symetric.txt'),'r').read())
variables.update(yaml.safe_load(f.decrypt(open(makepath(programfiles32,'wapt','private','variables.txt'),'r').read())))
f = Fernet(bytes(open(makepath(programfiles32,'wapt','private','symetric.txt'),'r').read(), 'utf-8'))
variables.update(yaml.safe_load(f.decrypt(bytes(open(makepath(programfiles32,'wapt','private','variables.txt'),'r').read(), 'utf-8'))))
def install():
print('Installing OpenSSH')
@ -102,7 +102,7 @@ def update_package():
wget(url,'OpenSSH-Win%s.zip' % arch)
print('Updating control file with new version %s' % version)
pe.version = version + '-0'
pre.maturity = 'PREPROD'
pe.maturity = 'PREPROD'
pe.save_control_to_wapt('.')
def audit():