fix: remove bogus task which does nothing

The command doesn't change anything on the system, and the registered
variable `disk_usage` is never being used, moreover it gets overwritten
by the next task.
This commit is contained in:
Christoph Schug 2024-03-03 17:38:41 +01:00
parent abe4bbcc85
commit 11ece4a070

View File

@ -3,10 +3,6 @@
hosts: "{{ my_hosts | d([]) }}"
tasks:
- name: Get disk usage
ansible.builtin.command: df -h
register: disk_usage
- name: Check disk space available
ansible.builtin.shell: df -Ph / | awk 'NR==2 {print $5}'
register: disk_usage