Better naming for recurrent tasks

This commit is contained in:
Anton Nerozya
2017-06-29 19:46:27 +02:00
parent 5e1ac9ce87
commit c8258171ca
4 changed files with 8 additions and 8 deletions

View File

@@ -19,12 +19,12 @@
when: >-
sync_file_is_cert|d() and (sync_file_key_path is not defined or sync_file_key_path == '')
- name: "sync_file | Check if file exists"
- name: "sync_file | Check if {{sync_file_path}} file exists"
stat:
path: "{{ sync_file_path }}"
register: sync_file_stat
- name: "sync_file | Check if key file exists"
- name: "sync_file | Check if {{ sync_file_key_path }} key file exists"
stat:
path: "{{ sync_file_key_path }}"
register: sync_file_key_stat