Skip to content

Commit

Permalink
fix: defaults: Match restic_install_path value to docs
Browse files Browse the repository at this point in the history
The README (Role Variables) asserts that `restic_install_path`
defaults to `/usr/local/bin`, when in fact it defaults to
`/usr/bin`. Fix the defaults to match the documentation.

Signed-off-by: Martin Kennedy <hurricos@gmail.com>
  • Loading branch information
Hurricos committed Aug 27, 2022
1 parent efd21f0 commit 4aecbbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
restic_url: '{{ restic_url_default }}'
restic_version: '0.12.1'
restic_download_path: '/opt/restic'
restic_install_path: '/usr/bin'
restic_install_path: '/usr/local/bin'
restic_script_dir: '/opt/restic'
restic_log_dir: '{{ restic_script_dir }}/log'
restic_repos: {}
Expand Down

0 comments on commit 4aecbbe

Please sign in to comment.