Skip to content

Commit

Permalink
2.4.10 takeover
Browse files Browse the repository at this point in the history
  • Loading branch information
daerSeebaer committed Apr 14, 2023
1 parent 5bee174 commit 1479292
Show file tree
Hide file tree
Showing 3 changed files with 63 additions and 0 deletions.
Binary file added pkgfiles/icons/icon.ico
Binary file not shown.
39 changes: 39 additions & 0 deletions pkgfiles/tools/chocolateyinstall.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
$ErrorActionPreference = 'Stop';

$packageName = 'urbackup-client'
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$url = ''

$pp = Get-PackageParameters
if (!$pp.TrayIcon){
$pp.TrayIcon = 'False'
$UrExe = 'https://hndl.urbackup.org/Client/2.4.10/UrBackup%20Client%20NoTray%202.4.10.exe'
$ChkSum = '9E9261B753DF74C36B44FCCF2129D25FAB631C1600ED861C0795CC6E442A4E9B'
}
if ($pp.TrayIcon -eq 'False'){
$UrExe = 'https://hndl.urbackup.org/Client/2.4.10/UrBackup%20Client%20NoTray%202.4.10.exe'
$ChkSum = '9E9261B753DF74C36B44FCCF2129D25FAB631C1600ED861C0795CC6E442A4E9B'
}
if ($pp.TrayIcon -eq 'True'){
$UrExe = 'https://hndl.urbackup.org/Client/2.4.10/UrBackup%20Client%202.4.10.exe'
$ChkSum = '727B31ED6400DEDC48E3C362014FB85970D50799BFE084316EB79A028C37E434'
}

#Based on Nsis
$packageArgs = @{
packageName = $packageName
softwareName = 'urbackup-client*'
fileType = 'exe'
silentArgs = "/S"
validExitCodes= @(0)
url = $UrExe
checksum = $ChkSum
checksumType = 'sha256'
url64bit = ""
checksum64 = ''
checksumType64= 'sha256'
destination = $toolsDir
#installDir = "" # passed when you want to override install directory - requires licensed editions 1.9.0+
}

Install-ChocolateyPackage @packageArgs
24 changes: 24 additions & 0 deletions pkgfiles/urbackup-client.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>urbackup-client</id>
<version>2.4.10</version>
<title>UrBackup-Client (Install))</title>
<authors>Martin Raiber</authors>
<owners>Martin Raiber</owners>
<projectUrl>http://www.urbackup.org/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>UrBackup is an easy to setup Open Source client/server backup system, that through a combination of image and file backups accomplishes both data safety and a fast restoration time.

File and image backups are made while the system is running without interrupting current processes.

UrBackup also continuously watches folders you want backed up in order to quickly find differences to previous backups. Because of that, incremental file backups are really fast.

Your files can be restored through the web interface, via the client or the Windows Explorer while the backups of drive volumes can be restored with a bootable CD or USB-Stick (bare metal restore).

A web interface makes setting up your own backup server really easy. For a quick impression please look at the screenshots here.

Currently there are over 8300 running UrBackup server instances (with auto-update enabled) with some instances having hundreds of active clients.</description>
<tags>urbackup-client admin backup</tags>
</metadata>
</package>

0 comments on commit 1479292

Please sign in to comment.