Browse Source

Fix error message inaccuracy

pull/66/head
Slavi Pantaleev 7 years ago
parent
commit
e604a7bd43
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      roles/matrix-server/tasks/import/import_postgres.yml
  2. +1
    -1
      roles/matrix-server/tasks/import/import_sqlite_db.yml

+ 1
- 1
roles/matrix-server/tasks/import/import_postgres.yml 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


+ 1
- 1
roles/matrix-server/tasks/import/import_sqlite_db.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




Loading…
Cancel
Save