diff --git a/scripts/remove b/scripts/remove index 67b02f6..52efc70 100755 --- a/scripts/remove +++ b/scripts/remove @@ -44,5 +44,4 @@ ynh_secure_remove --file="/etc/cron.d/$app" # END OF SCRIPT #================================================= -ynh_script_progression --message="If you don't need it anymore, don't forget to remove the MinIO app !" ynh_script_progression --message="Removal of $app completed" --last diff --git a/scripts/restore b/scripts/restore index 6bfff6e..03e23ae 100755 --- a/scripts/restore +++ b/scripts/restore @@ -21,7 +21,7 @@ if ! yunohost app list | grep -q "id: $dex_app"; then if yunohost app list | grep -q "$dex_domain$dex_path"; then ynh_die "The domain provided for Dex is already used by another app. Please chose another one !" fi - yunohost app install https://github.com/YunoHost-Apps/dex_ynh --force --args "domain=$dex_domain&path=$dex_path&OIDC_name=$oidc_name&OIDC_secret=$oidc_secret&OIDC_callback=$oidc_callback" + yunohost app install https://github.com/YunoHost-Apps/dex_ynh --force --args "domain=$dex_domain&path=$dex_path&oidc_name=$oidc_name&oidc_secret=$oidc_secret&oidc_callback=$oidc_callback" fi #=================================================