1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_restic_archiver.git synced 2024-08-16 10:09:49 +02:00

Change default restic version to 0.10.0 (#20)

https://github.com/restic/restic/releases/tag/v0.10.0
This commit is contained in:
L3D 2020-10-02 16:12:44 +02:00 committed by GitHub
parent 61c46acdbe
commit 95861d54d6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -62,7 +62,7 @@ ansible-galaxy install arillso.restic
| Name | Default | Description | | Name | Default | Description |
| ---------------------- | -------------------- | --------------------------------------------------------------------------- | | ---------------------- | -------------------- | --------------------------------------------------------------------------- |
| `restic_url` | `undefined` | The URL to download restic from. Use this variable to overwrite the default | | `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_download_path` | `'/opt/restic'` | Download location for the restic binary |
| `restic_install_path` | `'/usr/local/bin'` | Install 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 | | `restic_script_dir` | `'~/restic'` | Location of the generated backup scripts |

View file

@ -1,7 +1,7 @@
--- ---
# defaults file for skeleton # defaults file for skeleton
restic_url: '{{ restic_url_default }}' restic_url: '{{ restic_url_default }}'
restic_version: '0.9.6' restic_version: '0.10.0'
restic_download_path: '/opt/restic' restic_download_path: '/opt/restic'
restic_install_path: '/usr/bin' restic_install_path: '/usr/bin'
restic_script_dir: '~/restic' restic_script_dir: '~/restic'