Skip to content

Commit e4c1235

Browse files
committed
2.4.12 takeover
1 parent ef6721d commit e4c1235

File tree

3 files changed

+49
-0
lines changed

3 files changed

+49
-0
lines changed

pkgfiles/icons/icon.ico

160 KB
Binary file not shown.

pkgfiles/tools/chocolateyinstall.ps1

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
$ErrorActionPreference = 'Stop';
2+
3+
$packageName = 'urbackup-server'
4+
$toolsDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
5+
$fileLocation = ''
6+
7+
#Based on Nsis
8+
$packageArgs = @{
9+
packageName = $packageName
10+
softwareName = 'urbackup-server*'
11+
fileType = 'exe'
12+
silentArgs = "/S"
13+
validExitCodes= @(0)
14+
url = 'https://hndl.urbackup.org/Server/2.4.12/UrBackup%20Server%202.4.12.exe'
15+
checksum = 'C0D5F3AE1D78286AD2B7F7D237D937EE2268F6A92C904BA2D70F5EF7C2EF958C'
16+
checksumType = 'sha256'
17+
url64bit = ""
18+
checksum64 = ''
19+
checksumType64= ''
20+
destination = $toolsDir
21+
#installDir = "" # passed when you want to override install directory - requires licensed editions 1.9.0+
22+
}
23+
24+
Install-ChocolateyPackage @packageArgs
25+

pkgfiles/urbackup-server.nuspec

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3+
<metadata>
4+
<id>urbackup-server</id>
5+
<version>2.4.12</version>
6+
<title>UrBackup-Server (Install)</title>
7+
<authors>Martin Raiber</authors>
8+
<owners>Martin Raiber</owners>
9+
<projectUrl>http://www.urbackup.org/</projectUrl>
10+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
11+
<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.
12+
13+
File and image backups are made while the system is running without interrupting current processes.
14+
15+
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.
16+
17+
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).
18+
19+
A web interface makes setting up your own backup server really easy. For a quick impression please look at the screenshots here.
20+
21+
Currently there are over 8300 running UrBackup server instances (with auto-update enabled) with some instances having hundreds of active clients.</description>
22+
<tags>urbackup-server admin backup</tags>
23+
</metadata>
24+
</package>

0 commit comments

Comments
 (0)