Fix error message inaccuracy

development
Slavi Pantaleev 6 years ago
parent 4c2e1a0588
commit e604a7bd43

@ -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

@ -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

Loading…
Cancel
Save