-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5bee174
commit 1479292
Showing
3 changed files
with
63 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |