Synology Active Backup for Business Agent
Paquet d’installation silencieuse pour Synology Active Backup for Business Agent
3.1.0.4957-0
- package: tis-synology-active-backup-business-agent
- name: Synology Active Backup for Business Agent
- version: 3.1.0.4957-0
- maintainer: Bertrand Lemoigne
- target_os: windows
- impacted_process: Synology Active Backup for Business Service,Synology Active Backup for Business Agent
- architecture: x64
- signature_date:
- size: 59.57 Mo
package : tis-synology-active-backup-business-agent
version : 3.1.0.4957-0
architecture : x64
section : base
priority : optional
name : Synology Active Backup for Business Agent
categories :
maintainer : Bertrand Lemoigne
description : Active Backup for Business Agent (DSM) allows you to back up your entire Synology NAS, including its system configurations, packages, and data to a remote Synology NAS. Before you start to protect your Synology NAS data, install Active Backup for Business on the remote Synology NAS as your backup destination.
depends :
conflicts :
maturity : PROD
locale :
target_os : windows
min_wapt_version :
sources :
installed_size :
impacted_process : Synology Active Backup for Business Service,Synology Active Backup for Business Agent
description_fr :
description_pl :
description_de :
description_es :
description_pt :
description_it :
description_nl :
description_ru :
audit_schedule :
editor :
keywords :
licence :
homepage :
package_uuid : 0d36b32c-7d92-4551-8341-17942b4a6ad1
valid_from :
valid_until :
forced_install_on :
changelog :
min_os_version :
max_os_version :
icon_sha256sum : 9214d7685ac14032e9ad51e8ddf89c47ffba095eff5db5364f33edbd18f03105
signer : Tranquil IT
signer_fingerprint: 8c5127a75392be9cc9afd0dbae1222a673072c308c14d88ab246e23832e8c6bb
signature_date : 2025-10-21T04:17:18.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 : XUKJlvdOTFH8NXOzdVGl8IRei+/LfsaSjodvuUux4Gg4L7MSlp0o7vRbH3+mWsgxUv9rLQBLiRtMgUFeSfAy4r6M+8oFfOfGun5rvYkY0wMxPAzUlmR7pyvrSR1JRVaMq4tzBdtRIAF50e9PZBj3TIDj4maPSdD1BD98B4ExQFZH+6dGkwTU7KK8q+t6ZlcEqE0FYPt0GtkTimjnXInv3CZwQj5tkB2oGI2VvhtxVIBgp+FXnP+fLyWbqqYvXKJqgH8YRIHjDfoOgTUrwt62SvSfLSW/U0Rrzt6FHmpaX6uBnw3f+Nft0IDoow65Ci9da6ifRR8ClubRg/f4DL+8Pw==
# -*- coding: utf-8 -*-
from setuphelpers import *
r"""
Usable WAPT package functions: install(), uninstall(), session_setup(), audit(), update_package()
"""
# Declaring global variables - Warnings: 1) WAPT context is only available in package functions; 2) Global variables are not persistent between calls
def install():
# Declaring local variables
# Installing the software
bin_name = glob.glob("Synology Active Backup for Business Agent*.msi")[0]
print(f"Installing: {bin_name}")
install_msi_if_needed(bin_name)
# -*- coding: utf-8 -*-
from setuphelpers import *
from setupdevhelpers import *
def update_package():
# Declaring local variables
result = False
proxies = get_proxies()
if not proxies:
proxies = get_proxies_from_wapt_console()
app_name = control.name
url = "https://archive.synology.com/download/Utility/ActiveBackupBusinessAgent"
# Getting latest version from official sources
print("URL used is: %s" % url)
for bs_search in bs_find_all(url, "a", proxies=proxies):
if r'download/Utility/ActiveBackupBusinessAgent' in bs_search['href']:
actual_version = bs_search["href"].split('/')[-1]
version = bs_search["href"].split('/')[-1].replace('-','.')
latest_bin = f"Synology Active Backup for Business Agent-{actual_version}-x64.msi"
break
url = f"https://archive.synology.com/download/Utility/ActiveBackupBusinessAgent/{actual_version}"
for bs_search in bs_find_all(url, "a", proxies=proxies):
if 'x64.msi' in bs_search['href']:
download_url = bs_search['href']
break
print("Latest %s version is: %s" % (app_name, version))
print("Download URL is: %s" % download_url)
#nettoyer les fichiers temporaires
for f in glob.glob('*.msi'):
if f != latest_bin:
remove_file(f)
# Downloading latest binaries
if not isfile(latest_bin):
print("Downloading: %s" % latest_bin)
wget(download_url, latest_bin, connect_timeout=100, proxies=proxies)
control.set_software_version(version)
control.save_control_to_wapt()
a7e0be35d973260f1c144afbdefbaee1b63ca0dc77fa8704b6bca41b2a293553 : Synology Active Backup for Business Agent-3.1.0-4957-x64.msi
38d056ab130f7bf7c481c12636a4e9959de36561d3dfcbe54c6e3571bc0c1dc3 : WAPT/certificate.crt
6da9e07601b9297266fdab72ab80eca17ee3f6bf707ab39ed2e4d29742c3ee7c : WAPT/control
9214d7685ac14032e9ad51e8ddf89c47ffba095eff5db5364f33edbd18f03105 : WAPT/icon.png
8962117aa1a2babe9fa436f18ce7a3d4811ddcf4aa98411eb807e9c88f4ae65c : luti.json
fa2d1088073806eb26bc4e46501dcf2ce5ba62b82c6ac46d20e307f23653bafc : setup.py
a65265759f96357597cfdfe176daf7db9343a8f525aacede27f3d71e94df24a7 : update_package.py