Fix error message inaccuracy

This commit is contained in:
Slavi Pantaleev 2019-01-01 15:25:52 +02:00
parent 4c2e1a0588
commit e604a7bd43
2 changed files with 2 additions and 2 deletions

View file

@ -11,7 +11,7 @@
register: result_server_path_postgres_dump_stat
- name: Fail if provided Postgres dump file doesn't exists
fail: msg="File cannot be found on the local machine at {{ server_path_postgres_dump }}"
fail: msg="File cannot be found on the server at {{ server_path_postgres_dump }}"
when: not result_server_path_postgres_dump_stat.stat.exists
- include: tasks/util/detect_existing_postgres_version.yml

View file

@ -11,7 +11,7 @@
register: result_server_path_homeserver_db_stat
- name: Fail if provided SQLite homeserver.db file doesn't exist
fail: msg="File cannot be found on the local machine at {{ server_path_homeserver_db }}"
fail: msg="File cannot be found on the server at {{ server_path_homeserver_db }}"
when: not result_server_path_homeserver_db_stat.stat.exists