This repository has been archived on 2025-07-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2022-06-27 15:34:15 +02:00
|
|
|
- name: Zero-out disk
|
|
|
|
|
ansible.builtin.shell:
|
2022-07-04 17:57:56 +02:00
|
|
|
cmd: nice -n 10 dd bs=1M count=$(df -m . | awk '/[0-9]%/{print $(NF-2)}') if=/dev/zero of=./zero; sync; sync; rm -f ./zero
|
2022-06-27 15:34:15 +02:00
|
|
|
chdir: /opt/metacluster
|