Add support for automatic (Postgres -> SQLite) migration to mx-puppet-skype
This commit is contained in:
		| @@ -8,14 +8,6 @@ | ||||
|       The matrix-bridge-mx-puppet-skype role needs to execute before the matrix-synapse role. | ||||
|   when: "matrix_synapse_role_executed|default(False)" | ||||
|  | ||||
| - name: Ensure MX Puppet Skype image is pulled | ||||
|   docker_image: | ||||
|     name: "{{ matrix_mx_puppet_skype_docker_image }}" | ||||
|     source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}" | ||||
|     force_source: "{{ matrix_mx_puppet_skype_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}" | ||||
|     force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_mx_puppet_skype_docker_image_force_pull }}" | ||||
|   when: matrix_mx_puppet_skype_enabled|bool and not matrix_mx_puppet_skype_container_image_self_build | ||||
|  | ||||
| - name: Ensure MX Puppet Skype paths exist | ||||
|   file: | ||||
|     path: "{{ item.path }}" | ||||
| @@ -30,6 +22,57 @@ | ||||
|     - { path: "{{ matrix_mx_puppet_skype_docker_src_files_path }}", when: "{{ matrix_mx_puppet_skype_container_image_self_build }}" } | ||||
|   when: matrix_mx_puppet_skype_enabled|bool and item.when|bool | ||||
|  | ||||
| - name: Check if an old database file already exists | ||||
|   stat: | ||||
|     path: "{{ matrix_mx_puppet_skype_base_path }}/database.db" | ||||
|   register: matrix_mx_puppet_skype_stat_database | ||||
|  | ||||
| - name: (Data relocation) Ensure matrix-mx-puppet-skype.service is stopped | ||||
|   service: | ||||
|     name: matrix-mx-puppet-skype | ||||
|     state: stopped | ||||
|     daemon_reload: yes | ||||
|   failed_when: false | ||||
|   when: "matrix_mx_puppet_skype_stat_database.stat.exists" | ||||
|  | ||||
| - name: (Data relocation) Move mx-puppet-skype database file to ./data directory | ||||
|   command: "mv {{ matrix_mx_puppet_skype_base_path }}/database.db {{ matrix_mx_puppet_skype_data_path }}/database.db" | ||||
|   when: "matrix_mx_puppet_skype_stat_database.stat.exists" | ||||
|  | ||||
| - set_fact: | ||||
|     matrix_mx_puppet_skype_requires_restart: false | ||||
|  | ||||
| - block: | ||||
|     - name: Check if an SQLite database already exists | ||||
|       stat: | ||||
|         path: "{{ matrix_mx_puppet_skype_sqlite_database_path_local }}" | ||||
|       register: matrix_mx_puppet_skype_sqlite_database_path_local_stat_result | ||||
|  | ||||
|     - block: | ||||
|         - set_fact: | ||||
|             matrix_postgres_db_migration_request: | ||||
|               src: "{{ matrix_mx_puppet_skype_sqlite_database_path_local }}" | ||||
|               dst: "{{ matrix_mx_puppet_skype_database_connection_string }}" | ||||
|               caller: "{{ role_path|basename }}" | ||||
|               engine_variable_name: 'matrix_mx_puppet_skype_database_engine' | ||||
|               engine_old: 'sqlite' | ||||
|               systemd_services_to_stop: ['matrix-mx-puppet-skype.service'] | ||||
|  | ||||
|         - import_tasks: "roles/matrix-postgres/tasks/util/migrate_db_to_postgres.yml" | ||||
|  | ||||
|         - set_fact: | ||||
|             matrix_mx_puppet_skype_requires_restart: true | ||||
|       when: "matrix_mx_puppet_skype_sqlite_database_path_local_stat_result.stat.exists|bool" | ||||
|   when: "matrix_mx_puppet_skype_database_engine == 'postgres'" | ||||
|  | ||||
| - name: Ensure MX Puppet Skype image is pulled | ||||
|   docker_image: | ||||
|     name: "{{ matrix_mx_puppet_skype_docker_image }}" | ||||
|     source: "{{ 'pull' if ansible_version.major > 2 or ansible_version.minor > 7 else omit }}" | ||||
|     force_source: "{{ matrix_mx_puppet_skype_docker_image_force_pull if ansible_version.major > 2 or ansible_version.minor >= 8 else omit }}" | ||||
|     force: "{{ omit if ansible_version.major > 2 or ansible_version.minor >= 8 else matrix_mx_puppet_skype_docker_image_force_pull }}" | ||||
|   when: matrix_mx_puppet_skype_enabled|bool and not matrix_mx_puppet_skype_container_image_self_build | ||||
|  | ||||
| - name: Ensure MX Puppet Skype repository is present on self build | ||||
|   git: | ||||
|     repo: "{{ matrix_mx_puppet_skype_container_image_self_build_repo }}" | ||||
| @@ -49,23 +92,6 @@ | ||||
|       pull: yes | ||||
|   when: "matrix_mx_puppet_skype_enabled|bool and matrix_mx_puppet_skype_container_image_self_build|bool" | ||||
|  | ||||
| - name: Check if an old database file already exists | ||||
|   stat: | ||||
|     path: "{{ matrix_mx_puppet_skype_base_path }}/database.db" | ||||
|   register: matrix_mx_puppet_skype_stat_database | ||||
|  | ||||
| - name: (Data relocation) Ensure matrix-mx-puppet-skype.service is stopped | ||||
|   service: | ||||
|     name: matrix-mx-puppet-skype | ||||
|     state: stopped | ||||
|     daemon_reload: yes | ||||
|   failed_when: false | ||||
|   when: "matrix_mx_puppet_skype_stat_database.stat.exists" | ||||
|  | ||||
| - name: (Data relocation) Move mx-puppet-skype database file to ./data directory | ||||
|   command: "mv {{ matrix_mx_puppet_skype_base_path }}/database.db {{ matrix_mx_puppet_skype_data_path }}/database.db" | ||||
|   when: "matrix_mx_puppet_skype_stat_database.stat.exists" | ||||
|  | ||||
| - name: Ensure mx-puppet-skype config.yaml installed | ||||
|   copy: | ||||
|     content: "{{ matrix_mx_puppet_skype_configuration|to_nice_yaml }}" | ||||
| @@ -93,3 +119,9 @@ | ||||
|   service: | ||||
|     daemon_reload: yes | ||||
|   when: "matrix_mx_puppet_skype_systemd_service_result.changed" | ||||
|  | ||||
| - name: Ensure matrix-mx-puppet-skype.service restarted, if necessary | ||||
|   service: | ||||
|     name: "matrix-mx-puppet-skype.service" | ||||
|     state: restarted | ||||
|   when: "matrix_mx_puppet_skype_requires_restart|bool" | ||||
|   | ||||
| @@ -8,23 +8,3 @@ | ||||
|   with_items: | ||||
|     - "matrix_mx_puppet_skype_appservice_token" | ||||
|     - "matrix_mx_puppet_skype_homeserver_token" | ||||
|  | ||||
| - block: | ||||
|   - name: Check if an SQLite database already exists | ||||
|     stat: | ||||
|       path: "{{ matrix_mx_puppet_skype_data_path }}/database.db" | ||||
|     register: matrix_mx_puppet_skype_sqlite_database_path_local_stat_result | ||||
|  | ||||
|   - name: Fail if an SQLite database already exists when using Postgres | ||||
|     fail: | ||||
|       msg: >- | ||||
|         matrix_mx_puppet_skype_database_engine has been set to `postgres` (which is our new default now). | ||||
|         However, we've discovered an existing SQLite database in {{ matrix_mx_puppet_skype_data_path }}/database.db. | ||||
|         It appears that you've been using this bridge with the SQLite engine until now. | ||||
|         To continue using SQLite, opt into it explicitly: add `matrix_mx_puppet_skype_database_engine: sqlite` to your vars.yml file and re-run this same command. | ||||
|         Alternatively, to migrate your existing SQLite database to Postgres: | ||||
|         1. Stop all services (`ansible-playbook -i inventory/hosts setup.yml --tags=stop`) | ||||
|         2. Import the SQLite database into Postgres (`ansible-playbook -v -i inventory/hosts setup.yml --tags=import-generic-sqlite-db --extra-vars='sqlite_database_path={{ matrix_mx_puppet_skype_data_path }}/database.db postgres_connection_string_variable_name=matrix_mx_puppet_skype_database_connString'`) | ||||
|         3. Re-run the playbook (`ansible-playbook -i inventory/hosts setup.yml --tags=setup-all,start`) | ||||
|     when: "matrix_mx_puppet_skype_sqlite_database_path_local_stat_result.stat.exists" | ||||
|   when: "matrix_mx_puppet_skype_database_engine == 'postgres'" | ||||
|   | ||||
		Reference in New Issue
	
	Block a user