Skip to content

Commit

Permalink
Cs fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
tersmitten committed Sep 2, 2022
1 parent dce9841 commit d385bdd
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .ansible-lint
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
---
warn_list:
- '106'
- ignore-errors
- role-name
- name
2 changes: 1 addition & 1 deletion tasks/configuration.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# tasks file
---
- name: configuration | warn or fail
- name: configuration | warn or fail # noqa: ignore-errors
ansible.builtin.fail:
msg: "haproxy_global_nbproc is deprecated"
ignore_errors: "{{ haproxy_version is version('2.5', '<') }}"
Expand Down
2 changes: 1 addition & 1 deletion tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
- haproxy-letsencrypt

- name: start and enable service
ansible.builtin.ansible.builtin.service:
ansible.builtin.service:
name: haproxy
state: "{{ service_default_state | default('started') }}"
enabled: "{{ service_default_enabled | default(true) | bool }}"
Expand Down

0 comments on commit d385bdd

Please sign in to comment.