Skip to content

Commit

Permalink
Fix a few ansible-lint issues.
Browse files Browse the repository at this point in the history
  • Loading branch information
geerlingguy committed Aug 11, 2024
1 parent be75106 commit 30790ea
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .yamllint
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ rules:
line-length:
max: 180
level: warning
comments:
min-spaces-inside: 0
max-spaces-inside: 1
octal-values:
forbid-implicit-octal: true
forbid-explicit-octal: true

ignore: |
.github/stale.yml
2 changes: 1 addition & 1 deletion meta/runtime.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
requires_ansible: ">=2.14.0"
requires_ansible: ">=2.15.0"
4 changes: 3 additions & 1 deletion roles/homebrew/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,5 +187,7 @@
check_mode: false

- name: Install from Brewfile.
command: "{{ homebrew_brew_bin_path }}/brew bundle chdir={{ homebrew_brewfile_dir }}"
command: "{{ homebrew_brew_bin_path }}/brew bundle"
args:
chdir: "{{ homebrew_brewfile_dir }}"
when: homebrew_brewfile.stat.exists and homebrew_use_brewfile

0 comments on commit 30790ea

Please sign in to comment.