From 4aecbbeffd57c484e3bf0b3d511bb06783f8dd92 Mon Sep 17 00:00:00 2001 From: Martin Kennedy Date: Sat, 27 Aug 2022 18:36:13 -0400 Subject: [PATCH] fix: defaults: Match restic_install_path value to docs 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 --- defaults/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/defaults/main.yml b/defaults/main.yml index a8d7043..86e0f52 100644 --- a/defaults/main.yml +++ b/defaults/main.yml @@ -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: {}