1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/outline_ynh.git synced 2024-09-03 19:56:12 +02:00

Check if MinIO is installed or not

This commit is contained in:
Limezy 2021-11-10 00:17:02 +07:00
parent 3ca4c83892
commit 76ec7b02b6
2 changed files with 11 additions and 8 deletions

View file

@ -58,15 +58,10 @@
"type": "string",
"ask": "Slack Client Secret (from https://api.slack.com/apps)"
},
{
"name": "is_minio",
"type": "boolean",
"ask": "Is MinIO app already installed on your instance ?"
},
{
"name": "minio_domain",
"type": "domain",
"ask": "If MinIO app is already installed, you don't need to fill-in that field.\nIf it isn't please give a domain that can be used for MinIO installation (MinIO has to be installed at the root of a domain)\nIf MinIO is alraedy installed, you can leave this field empty."
"ask": "Is MinIO app already installed ?\nIf yes, you can leave that field blank.\nIf not please give a domain that can be used for MinIO installation.\nPlease note that MinIO has to be installed at the root of that domain : no other apps can be installed on that domain"
}
]
}

View file

@ -44,9 +44,17 @@ utils_secret=`openssl rand -hex 32`
slack_key=$YNH_APP_ARG_SLACK_KEY
slack_secret=$YNH_APP_ARG_SLACK_SECRET
app=$YNH_APP_INSTANCE_NAME
#=================================================
# CHECK IF MINIO IS INSTALLED, IF NOT INSTALL IT
#=================================================
ynh_script_progression --message="Installing MinIO if needed..." --time --weight=1
if ! ynh_package_is_installed --package="minio"; then
yunohost tools update
yunohost app install minio --force --args "domain=$YNH_APP_ARG_MINIO_DOMAIN&is_public=true&language=en"
minio_domain=$(ynh_app_setting_get --app="minio" --key=domain)
minio_id=$(ynh_app_setting_get --app="minio" --key=minio_id)
minio_key=$(ynh_app_setting_get --app="minio" --key=minio_key)
@ -149,7 +157,7 @@ ynh_add_nginx_config
#=================================================
# BUILD YARN DEPENDENCIES
#=================================================
ynh_script_progression --message="Building Yarn dependencies... This can be very long, be patient !"
ynh_script_progression --message="Building Yarn dependencies... This can be very long, be patient !" --time --weight=10
pushd "$final_path"
ynh_use_nodejs