From 95861d54d682a3ca1cade0098fd4b708003da994 Mon Sep 17 00:00:00 2001 From: L3D Date: Fri, 2 Oct 2020 16:12:44 +0200 Subject: [PATCH] Change default restic version to 0.10.0 (#20) https://github.com/restic/restic/releases/tag/v0.10.0 --- README.md | 2 +- defaults/main.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 12725a7..590b7fb 100644 --- a/README.md +++ b/README.md @@ -62,7 +62,7 @@ ansible-galaxy install arillso.restic | Name | Default | Description | | ---------------------- | -------------------- | --------------------------------------------------------------------------- | | `restic_url` | `undefined` | The URL to download restic from. Use this variable to overwrite the default | -| `restic_version` | `'0.9.6'` | The version of Restic to install | +| `restic_version` | `'0.10.0'` | The version of Restic to install | | `restic_download_path` | `'/opt/restic'` | Download location for the restic binary | | `restic_install_path` | `'/usr/local/bin'` | Install location for the restic binary | | `restic_script_dir` | `'~/restic'` | Location of the generated backup scripts | diff --git a/defaults/main.yml b/defaults/main.yml index 22c1db7..ebb6643 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -1,7 +1,7 @@ --- # defaults file for skeleton restic_url: '{{ restic_url_default }}' -restic_version: '0.9.6' +restic_version: '0.10.0' restic_download_path: '/opt/restic' restic_install_path: '/usr/bin' restic_script_dir: '~/restic'