Skip to content

Commit

Permalink
Hope ansible-lint is happy now
Browse files Browse the repository at this point in the history
  • Loading branch information
notthebee committed Mar 1, 2022
1 parent f7a079f commit e61e288
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .ansible-lint
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
skip_list:
- git-latest
- package-latest
- yaml

warn_list:
- load-failure
- yaml
7 changes: 5 additions & 2 deletions roles/containers/homeautomation/deconz/tasks/raspbee.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
state: absent


- name: Remove build files for kernel module
- name: Remove build files for kernel module file
file:
path: /home/pi/raspbee2-rtc-master
state: absent
Expand Down Expand Up @@ -85,14 +85,17 @@
name: hciuart
state: stopped
enabled: no
ignore_errors: True
register: hciuart_result
failed_when: hciuart_result.changed == 'false' and 'Could not find the requested service' not in hciuart_result.msg

- name: Stop bluetooth.service
systemd:
name: bluetooth.service
state: stopped
enabled: no
ignore_errors: True
register: bluetooth_result
failed_when: bluetooth_result.changed == 'false' and 'Could not find the requested service' not in bluetooth_result.msg



Expand Down

0 comments on commit e61e288

Please sign in to comment.