Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix linter for Consul #370

Merged
merged 4 commits into from
Jun 10, 2023
Merged

Fix linter for Consul #370

merged 4 commits into from
Jun 10, 2023

Commits on Jun 9, 2023

  1. 🔥 chore(ansible-lint.yml): remove ../roles/consul from exclude_paths

    The ../roles/consul path was previously excluded from ansible-lint checks, but it is no longer necessary as the issue it was addressing has been resolved.
    ThomasSanson committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    25c5240 View commit details
    Browse the repository at this point in the history
  2. 🎨 style(consul): change variable name from `consul_autopilot_cleanup_…

    …dead_Servers` to `consul_autopilot_cleanup_dead_servers` for consistency
    
    The variable name `consul_autopilot_cleanup_dead_Servers` has been changed to `consul_autopilot_cleanup_dead_servers` to improve consistency with the naming conventions used in the rest of the codebase.
    ThomasSanson committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    1b433a5 View commit details
    Browse the repository at this point in the history
  3. 🐛 fix(dnsmasq.yml): remove unnecessary jinja2 brackets in when statement

    The jinja2 brackets in the when statement are unnecessary and can be removed. This commit removes them to improve readability and consistency with other tasks in the playbook.
    ThomasSanson committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    385e8c3 View commit details
    Browse the repository at this point in the history
  4. 🐛 fix(encrypt_gossip.yml): add pipefail option to shell command to pr…

    …event silent errors
    
    The `set -o pipefail` option was added to the shell command to prevent silent errors that may occur when the `grep` command fails to find the "encrypt" key in the `config.json` file. This ensures that any errors that occur during the execution of the command are caught and reported.
    ThomasSanson committed Jun 9, 2023
    Configuration menu
    Copy the full SHA
    ab7ab55 View commit details
    Browse the repository at this point in the history