Skip to content

Commit

Permalink
Eliminate some linter errors
Browse files Browse the repository at this point in the history
  • Loading branch information
bviktor committed Mar 4, 2023
1 parent 79dcbb4 commit 83180ef
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion roles/install/tasks/autokick.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
force: true
register: autokick_git

- name: Build kf2_autokick # noqa no-handler
- name: Build kf2_autokick # noqa no-handler no-changed-when
become_user: steam
shell:
cmd: "cd {{ steam_home }}/kf2autokick && yarn --silent --prod --frozen-lockfile"
Expand Down
2 changes: 1 addition & 1 deletion roles/install/tasks/init.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
---
- name: Initialize KF2 config
- name: Initialize KF2 config # noqa no-changed-when
become_user: steam
command:
cmd: "{{ steam_home }}/bin/killinuxfloor {{ item }}"
Expand Down
2 changes: 1 addition & 1 deletion roles/uninstall/tasks/firewalld.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
state: absent
register: kf2_fw_delete

- name: Reload firewalld config
- name: Reload firewalld config # noqa no-changed-when
command:
cmd: firewall-cmd --reload
when: servicecheck.started and kf2_fw_delete.changed
2 changes: 1 addition & 1 deletion roles/uninstall/tasks/selinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
changed_when: false
register: klf_selinux

- name: Disable SELinux policy module
- name: Disable SELinux policy module # noqa no-changed-when
command:
cmd: semodule --remove=killinuxfloor
when: klf_selinux.rc == 0
Expand Down

0 comments on commit 83180ef

Please sign in to comment.