Downloads:
15,555
Downloads of v 0.15.2:
954
Last Update:
25 Apr 2023
Package Maintainer(s):
Software Author(s):
- Alexander Neumann
Tags:
restic backup file- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Restic
This is not the latest version of Restic available.
- 1
- 2
- 3
0.15.2 | Updated: 25 Apr 2023
- Software Specific:
- Software Site
- Software Source
- Software License
- Software Issues
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
15,555
Downloads of v 0.15.2:
954
Maintainer(s):
Software Author(s):
- Alexander Neumann
Restic 0.15.2
This is not the latest version of Restic available.
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Alexander Neumann. The inclusion of Alexander Neumann trademark(s), if any, upon this webpage is solely to identify Alexander Neumann goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install Restic, run the following command from the command line or from PowerShell:
To upgrade Restic, run the following command from the command line or from PowerShell:
To uninstall Restic, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download restic --internalize --version=0.15.2 --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade restic -y --source="'INTERNAL REPO URL'" --version="'0.15.2'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade restic -y --source="'INTERNAL REPO URL'" --version="'0.15.2'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install restic
win_chocolatey:
name: restic
version: '0.15.2'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'restic' do
action :install
source 'INTERNAL REPO URL'
version '0.15.2'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller restic
{
Name = "restic"
Version = "0.15.2"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'restic':
ensure => '0.15.2',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 25 Apr 2023.
Restic is a backup program that is fast, efficient and secure. Restic will be installed into \chocolatey\lib\restic
Import-Module AU
function global:au_SearchReplace {
@{
".\legal\verification.txt" = @{
"(?i)(32-Bit.+)\<.*\>" = "`${1}<$($Latest.URL32)>"
"(?i)(64-Bit.+)\<.*\>" = "`${1}<$($Latest.URL64)>"
"(?i)(checksum type:\s+).*" = "`${1}$($Latest.ChecksumType64)"
"(?i)(checksum32:\s+).*" = "`${1}$($Latest.Checksum32)"
"(?i)(checksum64:\s+).*" = "`${1}$($Latest.Checksum64)"
"(?i)(downloaded.*release page\:?\s*)\<.*\>" = "`${1}<$($Latest.web_url)>"
}
".\tools\chocolateyInstall.ps1" = @{
"(?i)(^\s*file\s*=\s*`"[$]toolsPath\\).*" = "`${1}$($Latest.FileName32)`""
"(?i)(^\s*file64\s*=\s*`"[$]toolsPath\\).*" = "`${1}$($Latest.FileName64)`""
}
}
}
function global:au_BeforeUpdate {
Get-RemoteFiles -Purge -NoSuffix
$response = Invoke-WebRequest -Uri $Latest.ChecksumsUrl
$rawCsv = ([System.Text.Encoding]::ASCII.GetString($response.Content)) -replace ' ',','
$url32Hash = ConvertFrom-Csv -Header checksum,name $rawCsv | ? name -match 'windows_386.zip' | Select -First 1 -expand checksum
$url64Hash = ConvertFrom-Csv -Header checksum,name $rawCsv | ? name -match 'windows_amd64.zip' | Select -First 1 -expand checksum
if ($url32Hash -ne $Latest.Checksum32) {
throw "File checksum of downloaded 32bit executable do not match expected upstream checksum"
}
if ($url64Hash -ne $Latest.Checksum64) {
throw "File checksum of downloaded 64bit executable do not match expected upstream checksum"
}
}
function global:au_GetLatest {
$response = Invoke-WebRequest -Uri https://api.github.com/repos/restic/restic/releases/latest
$release = ConvertFrom-Json $response.Content
$version = $release.tag_name -replace '^v',''
$url64 = $release.assets | ? name -match 'windows_amd64' | select -First 1 -expand browser_download_url
$url32 = $release.assets | ? name -match 'windows_386' | select -First 1 -expand browser_download_url
$checksumsUrl = $release.assets | ? name -match 'SHA256SUMS$' | select -First 1 -expand browser_download_url
return @{
url32 = $url32
url64 = $url64
checksumType32 = 'SHA256'
checksumType64 = 'SHA256'
version = $version
ChecksumsUrl = $checksumsUrl
web_url = $release.html_url
}
}
update -ChecksumFor none -NoCheckChocoVersion
BSD 2-Clause License
Copyright (c) 2014, Alexander Neumann <[email protected]>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright notice, this
list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
VERIFICATION
Verification is intended to assist the Chocolatey moderators and community
in verifying that this package's contents are trustworthy.
The installer has been downloaded from the Github release page <https://github.com/restic/restic/releases/tag/v0.15.2>
and can be verified like this:
1. Download the following installers:
32-Bit: <https://github.com/restic/restic/releases/download/v0.15.2/restic_0.15.2_windows_386.zip>
64-Bit: <https://github.com/restic/restic/releases/download/v0.15.2/restic_0.15.2_windows_amd64.zip>
2. You can use one of the following methods to obtain the checksum
- Use powershell function 'Get-Filehash'
- Use chocolatey utility 'checksum.exe'
checksum type: sha256
checksum32: 6F9D22DDE53839CFC4A035C019F2E55FA6A7E7E1AC308060EC312B70E6272611
checksum64: 37DBD859160BBB6D1B95E9F4A5C498C8DF386DB510950875C70328F688CB4E5D
File 'LICENSE.txt' is obtained from <https://github.com/restic/restic/blob/master/LICENSE>
md5: D607F5B1E1EC88FF2B511A340D8E3838 | sha1: 4BC98C1BCACDC2BE0C422D1A48BA95D492BF2F9C | sha256: 6F9D22DDE53839CFC4A035C019F2E55FA6A7E7E1AC308060EC312B70E6272611 | sha512: 0421DAE3DBF47F3942CA6F35419A5F11DBAA4A69E40BDEB2FEE022D812CAB1B06B5A0E42C2538E6B45D2BE04FA349B4145BD59E58ADC7CCAD598DAF12D1A6FDE
md5: 32FD6C789642DC23104F6ACD249ADDD8 | sha1: D57EB472366E5D4D8998A64649C4E63E6A7DC368 | sha256: 37DBD859160BBB6D1B95E9F4A5C498C8DF386DB510950875C70328F688CB4E5D | sha512: D1ECBC1D2729BC020CF9CE0B7769FA4D790845B4D5F1642DB9431A7EEC958810503BB7A1AF90944C77B2C525429E5237853B208482C22C5BBFABB571C4E3DC78
Log in or click on link to see number of positives.
- restic.0.15.2.nupkg (13236e431d93) - ## / 64
- restic_0.15.2_windows_386.zip (6f9d22dde538) - ## / 64
- restic_0.15.2_windows_amd64.zip (37dbd859160b) - ## / 64
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
Restic 0.17.3 | 405 | Tuesday, November 12, 2024 | Approved | |
Restic 0.17.2 | 339 | Tuesday, October 29, 2024 | Approved | |
Restic 0.17.1 | 687 | Friday, September 6, 2024 | Approved | |
Restic 0.17.0 | 624 | Tuesday, July 30, 2024 | Approved | |
Restic 0.16.4 | 1520 | Monday, February 5, 2024 | Approved | |
Restic 0.16.3 | 545 | Monday, January 15, 2024 | Approved | |
Restic 0.16.1 | 1052 | Thursday, October 26, 2023 | Approved | |
Restic 0.16.0 | 781 | Monday, August 7, 2023 | Approved | |
Restic 0.15.2 | 954 | Tuesday, April 25, 2023 | Approved | |
Restic 0.15.1 | 846 | Friday, February 3, 2023 | Approved | |
Restic 0.13.1 | 1778 | Monday, April 18, 2022 | Approved | |
Restic 0.12.1 | 1242 | Wednesday, August 4, 2021 | Approved | |
Restic 0.12.0 | 768 | Tuesday, March 16, 2021 | Approved | |
Restic 0.11.0 | 1714 | Friday, November 13, 2020 | Approved | |
Restic 0.9.6 | 579 | Monday, October 26, 2020 | Approved | |
Restic 0.9.5 | 1431 | Thursday, April 25, 2019 | Approved | |
Restic 0.9.4 | 290 | Tuesday, February 12, 2019 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about Restic and the Restic package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or Restic, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.