fixed 301 lint issue in uninstall-k3s.yml

This commit is contained in:
Devin Buhl 2020-02-25 15:41:29 -05:00 committed by GitHub
parent e7c787e10f
commit a1e52fb660
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,11 +2,15 @@
- name: "Run k3s-killall.sh"
command: k3s-killall.sh
register: k3s_killall
changed_when: k3s_killall.rc == 0
- name: "Run k3s-uninstall.sh"
command:
cmd: k3s-uninstall.sh
removes: /usr/local/bin/k3s-uninstall.sh
register: k3s_uninstall
changed_when: k3s_uninstall.rc == 0
- name: "Clean up Docker"
command: docker system prune -a --force