From d9dfd5c6b5ca4ca8602fc43cec7ff2055a9fd936 Mon Sep 17 00:00:00 2001 From: "jerome.gagnon" Date: Sun, 8 Oct 2023 23:46:51 +0000 Subject: [PATCH] fixes some linting and ansible warnings --- .ansible-lint | 1 + molecule/default/verify.yml | 3 +++ 2 files changed, 4 insertions(+) diff --git a/.ansible-lint b/.ansible-lint index 2aea330..fc718c3 100644 --- a/.ansible-lint +++ b/.ansible-lint @@ -1,3 +1,4 @@ --- skip_list: - fqcn-builtins + - var-naming[no-role-prefix] \ No newline at end of file diff --git a/molecule/default/verify.yml b/molecule/default/verify.yml index f816e3f..a46eb2c 100644 --- a/molecule/default/verify.yml +++ b/molecule/default/verify.yml @@ -4,10 +4,13 @@ tasks: - name: Ensure Borgmatic is installed correctly command: borgmatic --version + changed_when: false - name: Ensure Borg is installed correctly command: borgmatic borg --version + changed_when: false - name: Ensure produced YAML is valid command: | yamllint -d "{extends: relaxed, rules: {line-length: {max: 120}}}" /etc/borgmatic/config.yaml + changed_when: false