1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mattermost_ynh.git synced 2024-09-03 19:36:29 +02:00
This commit is contained in:
Éric Gaspar 2022-06-29 00:23:42 +02:00
parent 4d15d6887e
commit 2d4ae568ff
No known key found for this signature in database
GPG key ID: 574F281483054D44
2 changed files with 7 additions and 5 deletions

View file

@ -29,13 +29,15 @@ mysql-to-pg() {
# Migrating from MySQL to PostgreSQL # Migrating from MySQL to PostgreSQL
pgloader $tmpdir/mysql-to-pg.conf pgloader $tmpdir/mysql-to-pg.conf
ynh_replace_string --match_string="\(\"DriverName\" *: \).*," --replace_string="\"DriverName\": \"postgres\"", --target_file="$final_path/config/config.json"
ynh_replace_string --match_string="\(\"DataSource\" *: \).*," --replace_string="\"DataSource\": \"postgres://$db_user:$db_pwd@localhost:5432/$db_name?sslmode=disable&connect_timeout=10\"", --target_file="$final_path/config/config.json"
# Removinging MySQL database # Removinging MySQL database
ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name ynh_mysql_remove_db --db_user=$db_user --db_name=$db_name
ynh_secure_remove --file="$tmpdir" ynh_secure_remove --file="$tmpdir"
else else
ynh_print_info --message="No migration needed" ynh_print_info --message="No migration needed"
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
fi fi
} }

View file

@ -180,12 +180,12 @@ mysql-to-pg
#================================================= #=================================================
# UPDATE A CONFIG FILE # UPDATE A CONFIG FILE
#================================================= #=================================================
ynh_script_progression --message="Updating a configuration file..." --weight=3 # ynh_script_progression --message="Updating a configuration file..." --weight=3
smtp_user_pwd=$(ynh_string_random --length=24) # smtp_user_pwd=$(ynh_string_random --length=24)
url=https://$domain$path_url # url=https://$domain$path_url
ynh_add_config --template="../conf/config.json" --destination="$final_path/config/config.json" # ynh_add_config --template="../conf/config.json" --destination="$final_path/config/config.json"
#================================================= #=================================================
# SETUP SYSTEMD # SETUP SYSTEMD