From e8013fce2ccf5cef3808e5492cbd6dfa97554c4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Thu, 18 Jan 2024 10:40:50 +0100 Subject: [PATCH] cleaning --- manifest.toml | 3 +++ scripts/install | 5 +---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/manifest.toml b/manifest.toml index 9c573e2..94b64a0 100644 --- a/manifest.toml +++ b/manifest.toml @@ -19,8 +19,11 @@ code = "https://github.com/joomla/joomla-cms" yunohost = ">= 11.2" architectures = "all" multi_instance = true + ldap = false + sso = false + disk = "50M" ram.build = "50M" ram.runtime = "50M" diff --git a/scripts/install b/scripts/install index 98add34..89efffe 100644 --- a/scripts/install +++ b/scripts/install @@ -28,7 +28,6 @@ ynh_app_setting_set --app=$app --key=secret --value=$secret #================================================= ynh_script_progression --message="Setting up source files..." -# Download, check integrity, uncompress and patch the source from app.src ynh_setup_source --dest_dir="$install_dir" chmod -R o-rwx "$install_dir" @@ -39,10 +38,8 @@ chown -R $app:www-data "$install_dir" #================================================= ynh_script_progression --message="Configuring PHP-FPM..." -# Create a dedicated PHP-FPM config ynh_add_fpm_config -# Create a dedicated NGINX config ynh_add_nginx_config #================================================= @@ -69,7 +66,7 @@ ynh_mysql_execute_file_as_root --file="$install_dir/installation/sql/mysql/suppo ynh_secure_remove --file="$install_dir/installation" pushd "$install_dir" - php$phpversion cli/joomla.php user:add --username "$admin" --name "$admin" --password "$password" --email "$email" --usergroup "Super Users" -n + php$phpversion cli/joomla.php user:add --username="$admin" --name="$admin" --password="$password" --email="$email" --usergroup="Super Users" -n popd #=================================================