diff --git a/manifest.toml b/manifest.toml index cfe046e..8ddbd6b 100644 --- a/manifest.toml +++ b/manifest.toml @@ -22,11 +22,14 @@ fund = "https://patreon.com/syuilo" yunohost = ">= 11.2" architectures = ["amd64", "arm64"] multi_instance = true + ldap = false + sso = true -disk = "50M" # FIXME: replace with an **estimate** minimum disk requirement. e.g. 20M, 400M, 1G, ... -ram.build = "50M" # FIXME: replace with an **estimate** minimum ram requirement. e.g. 50M, 400M, 1G, ... -ram.runtime = "50M" # FIXME: replace with an **estimate** minimum ram requirement. e.g. 50M, 400M, 1G, ... + +disk = "50M" +ram.build = "50M" +ram.runtime = "50M" [install] [install.domain] @@ -39,10 +42,10 @@ ram.runtime = "50M" # FIXME: replace with an **estimate** minimum ram requiremen default = "visitors" [resources] + [resources.sources.main] url = "https://github.com/misskey-dev/misskey/archive/refs/tags/2024.3.1.tar.gz" sha256 = "f962f38fbf71f600fcc8c1969f418f46565fa58b83dc93528d29a3e65fd79571" - autoupdate.strategy = "latest_github_tag" [resources.system_user] diff --git a/scripts/remove b/scripts/remove index ac43ded..797f15d 100755 --- a/scripts/remove +++ b/scripts/remove @@ -26,25 +26,11 @@ ynh_remove_logrotate # Remove the dedicated NGINX config ynh_remove_nginx_config -#================================================= -# REMOVE THE REDIS DATABASE -#================================================= -ynh_script_progression --message="Removing the redis database..." --weight=1 - ynh_redis_remove_db "$redis_db" -#================================================= -# REMOVE DEPENDENCIES -#================================================= -ynh_script_progression --message="Removing NodeJS..." --weight=1 - # Remove metapackage and its dependencies ynh_remove_nodejs -#================================================= -# REMOVE VARIOUS FILES -#================================================= - # Remove the log files ynh_secure_remove --file="/var/log/$app" diff --git a/scripts/restore b/scripts/restore index ecfe294..ecd592e 100755 --- a/scripts/restore +++ b/scripts/restore @@ -42,6 +42,7 @@ ynh_restore_file --origin_path="/etc/nginx/conf.d/$domain.d/$app.conf" ynh_restore_file --origin_path="/etc/systemd/system/$app.service" systemctl enable "$app.service" --quiet + yunohost service add "$app" --description="A interplanetary blogging platform" --log="/var/log/$app/$app.log" ynh_restore_file --origin_path="/etc/logrotate.d/$app" diff --git a/scripts/upgrade b/scripts/upgrade index 3c28cd8..50a2511 100644 --- a/scripts/upgrade +++ b/scripts/upgrade @@ -23,11 +23,6 @@ ynh_script_progression --message="Stopping $app's systemd service..." --weight=1 # Stop bservice before backup, to not loose message in case of failed upgrade and restore ynh_systemd_action --service_name="$app" --action="stop" --log_path=systemd -#================================================= -# ENSURE DOWNWARD COMPATIBILITY -#================================================= -# ynh_script_progression --message="Ensuring downward compatibility..." --weight=1 - #================================================= # UPGRADE DEPENDENCIES #=================================================