Просмотр исходного кода

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.
Christoph Schug 2 лет назад
Родитель
Сommit
11ece4a070
1 измененных файлов с 0 добавлено и 4 удалено
  1. 0 4
      ansible/maintenance/maint-diskspace.yaml

+ 0 - 4
ansible/maintenance/maint-diskspace.yaml

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