Fix cosmetic problems in YAML source

This change corrects problems reported by the `yamllint` linter.

Since key duplication problems were removed in 4d48711, this commit
mainly fixes trailing spaces and extra empty lines at beginning/end of
files.
This commit is contained in:
Adrien Vergé 2016-04-18 16:47:38 +02:00 committed by Matt Clay
commit 0e834fc9e4
251 changed files with 214 additions and 510 deletions

View file

@ -36,7 +36,7 @@
register: win_get_url_result
- name: check that url was downloaded
assert:
assert:
that:
- "not win_get_url_result|failed"
- "win_get_url_result|changed"
@ -50,7 +50,7 @@
register: win_get_url_result_again
- name: check that url was downloaded again
assert:
assert:
that:
- "not win_get_url_result_again|failed"
- "win_get_url_result_again|changed"
@ -63,7 +63,7 @@
register: win_get_url_result_noforce
- name: check that url was not downloaded again
assert:
assert:
that:
- "not win_get_url_result_noforce|failed"
- "not win_get_url_result_noforce|changed"
@ -76,7 +76,7 @@
ignore_errors: true
- name: check that the download failed for an invalid url
assert:
assert:
that:
- "win_get_url_result_invalid_link|failed"
@ -88,7 +88,7 @@
ignore_errors: true
- name: check that the download failed for an invalid path
assert:
assert:
that:
- "win_get_url_result_invalid_path|failed"
@ -100,6 +100,6 @@
ignore_errors: true
- name: check that the download failed if dest is a directory
assert:
assert:
that:
- "win_get_url_result_dir_path|failed"