1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mattermost_ynh.git synced 2024-09-03 19:36:29 +02:00
mattermost_ynh/scripts/_common.sh

49 lines
1.4 KiB
Bash
Raw Normal View History

2021-01-11 23:46:48 +01:00
#!/bin/bash
#=================================================
# COMMON VARIABLES
#=================================================
2022-06-22 10:58:12 +02:00
# dependencies used by the app
pkg_dependencies="postgresql postgresql-contrib pgloader"
2022-06-22 10:58:12 +02:00
2021-01-11 23:46:48 +01:00
#=================================================
# PERSONAL HELPERS
#=================================================
2022-06-28 23:12:39 +02:00
mysql-to-pg() {
if mysqlshow | grep -q "^| $db_name "; then
ynh_script_progression --message="Creating a PostgreSQL database..." --weight=10
mysql_db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
db_pwd=$(ynh_string_random --length=24)
ynh_app_setting_set --app=$app --key=db_pwd --value=$db_pwd
ynh_psql_test_if_first_run
ynh_psql_setup_db --db_user=$db_user --db_name=$db_name --db_pwd=$db_pwd
tmpdir="$(mktemp -d)"
ynh_add_config --template="../conf/mysql-to-pg.conf" --destination="$tmpdir/mysql-to-pg.conf"
# Migrating from MySQL to PostgreSQL
pgloader $tmpdir/mysql-to-pg.conf
# Removinging MySQL database
ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
ynh_secure_remove --file="$tmpdir"
else
ynh_print_info --message="No migration needed"
fi
}
2021-01-11 23:46:48 +01:00
#=================================================
# EXPERIMENTAL HELPERS
#=================================================
#=================================================
# FUTURE OFFICIAL HELPERS
#=================================================