1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yeswiki_ynh.git synced 2024-09-03 18:05:56 +02:00

Merge pull request #97 from Lab-8916100448256/testing

Fix upgrade error
This commit is contained in:
Florian 2024-06-15 00:32:50 +02:00 committed by GitHub
commit 4476878f04
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -86,19 +86,20 @@ ynh_add_config --template="sync_app_importer.sh" --destination="/etc/yunohost/ho
chown root:root /etc/yunohost/hooks.d/post_app_install/${app}_sync_app_importer.sh chown root:root /etc/yunohost/hooks.d/post_app_install/${app}_sync_app_importer.sh
chmod +x /etc/yunohost/hooks.d/post_app_install/${app}_sync_app_importer.sh chmod +x /etc/yunohost/hooks.d/post_app_install/${app}_sync_app_importer.sh
# ToDo : Add app importer config in wakka.config.php if it is not already there ?
if [ $(grep yunohost_sso_domain "$install_dir/wakka.config.php" | wc -l) = "0" ]; then if [ $(grep yunohost_sso_domain "$install_dir/wakka.config.php" | wc -l) = "0" ]; then
SSO_DOMAIN=$(yunohost domain main-domain | sed -e 's/.*: //') SSO_DOMAIN=$(yunohost domain main-domain | sed -e 's/.*: //')
ynh_replace_string --match_string=");" --replace_string=" 'yunohost_sso_domain' => '${SSO_DOMAIN}',\n);" --target_file="$install_dir/wakka.config.php" ynh_replace_string --match_string="wakkaConfig = array (" --replace_string="wakkaConfig = array (\n 'yunohost_sso_domain' => '${SSO_DOMAIN}',\n" --target_file="$install_dir/wakka.config.php"
fi fi
# ToDo : Add app importer config in wakka.config.php if it is not already there ?
# At last, run the YunoHost app importer # At last, run the YunoHost app importer if its data source is configured
ynh_script_progression --message="Import YunoHost apps in bazar" --weight=2 if [ $(grep yunohost-cli "$install_dir/wakka.config.php" | wc -l) != "0" ]; then
pushd $install_dir ynh_script_progression --message="Import YunoHost apps in bazar" --weight=2
ynh_exec_as $app ./yeswicli importer:sync -s yunohost-cli pushd $install_dir
popd ynh_exec_as $app ./yeswicli importer:sync -s yunohost-cli
popd
fi
#================================================= #=================================================
# SECURE FILES AND DIRECTORIES # SECURE FILES AND DIRECTORIES