4651bcf561
* Add win_format * Some doc changes were missed * Fixes for ansible-test, additional assertion for check mode * Fix -WhatIf issues * Support for idempotency and changes to integration tests * Fix trailing whitespace * Fixes from review, and added check for non-empty volumes * Remove an extra line * Structural changes * Minor fixes for CI
7 lines
250 B
YAML
7 lines
250 B
YAML
---
|
|
- name: Check if Format-Volume is supported
|
|
win_shell: if (Get-Command -Name Format-Volume -ErrorAction SilentlyContinue) { $true } else { $false }
|
|
register: module_present
|
|
|
|
- include: pre_test.yml
|
|
when: module_present.stdout | trim | bool
|