X-Git-Url: https://gerrit.akraino.org/r/gitweb?a=blobdiff_plain;f=playbooks%2Fdestroy_data_and_partitions.yml;h=a9de0156e285ded5cbf4f5268d7491bab687ffa0;hb=2dfb03eebd138f9c7d52d962ab7468eb248fd23e;hp=89c5f26e21f6f7437483b01aa63cf390321a6488;hpb=74a49ba6ef2ea715fa492db0bcd85c30398688e8;p=ta%2Finfra-ansible.git diff --git a/playbooks/destroy_data_and_partitions.yml b/playbooks/destroy_data_and_partitions.yml index 89c5f26..a9de015 100644 --- a/playbooks/destroy_data_and_partitions.yml +++ b/playbooks/destroy_data_and_partitions.yml @@ -14,20 +14,28 @@ # See the License for the specific language governing permissions and # limitations under the License. +- name: check whether disks exist and are block devices + stat: path={{ item }} follow=true + with_items: "{{ disks }}" + register: disks_stat + - name: wipe off filesystems from disks - shell: "[ -b {{ item }} ] | /usr/sbin/wipefs --all --force {{ item }} || /usr/sbin/wipefs --all --force {{ item }}" + command: "/usr/sbin/wipefs --all --force {{ item.item }}" args: creates: /etc/storage/osd_disk_metadata.json - with_items: "{{ disks }}" + with_items: "{{ disks_stat.results }}" + when: item.stat.exists and item.stat.isblk - name: destroy data from disks - shell: "[ -b {{ item }} ] | dd if=/dev/zero of={{ item }} count=200 bs=1M" + command: "dd if=/dev/zero of={{ item.item }} count=200 bs=1M" args: creates: /etc/storage/osd_disk_metadata.json - with_items: "{{ disks }}" + with_items: "{{ disks_stat.results }}" + when: item.stat.exists and item.stat.isblk - name: destroy partitions from disks - shell: "[ -b {{ item }} ] | /usr/sbin/sgdisk --zap-all --clear --mbrtogpt -- {{ item }} || /usr/sbin/sgdisk --zap-all --clear --mbrtogpt -- {{ item }}" + command: "/usr/sbin/sgdisk --zap-all --clear --mbrtogpt -- {{ item.item }}" args: creates: /etc/storage/osd_disk_metadata.json - with_items: "{{ disks }}" + with_items: "{{ disks_stat.results }}" + when: item.stat.exists and item.stat.isblk