diff --git a/manifest.toml b/manifest.toml index 4eb4272..651d38c 100644 --- a/manifest.toml +++ b/manifest.toml @@ -55,15 +55,6 @@ ram.runtime = "1024M" help.fr = "Si true, le robot groupera les conversations IRC dans une communauté Matrix.Pas nécessaire si vous avez réglé Synapse pour qu'il autorise les non-admin à créer des communautés." default = true - # TODO: is it supported? - # [install.encryption] - # ask.en = "Enable end-to-bridge encryption?" - # ask.fr = "Activer le chiffrement entre Synapse et le bridge ?" - # type = "boolean" - # help.en = "Only activate if you know the prerequisites and constraints related to E2B." - # help.fr = "N'activer que si vous connaissez les prérequis et constraintes liées à E2B." - # default = true - [install.botadmin] ask.en = "Choose the Matrix account administrator of the IRC bot" ask.fr = "Choisissez le compte Matrix administrateur du robot IRC" diff --git a/scripts/install b/scripts/install index 30ad339..22ccba4 100755 --- a/scripts/install +++ b/scripts/install @@ -16,14 +16,6 @@ ynh_app_setting_set --app="$app" --key=server_name --value="$server_name" ynh_app_setting_set --app="$app" --key=domain --value="$domain" synapse_db_name="matrix_$synapse_instance" -# This is needed to convert the value from the manifest to a valid value for the config.yaml file. -# Without this the install script will throw a warning. -if [ "$encryption" -eq "1" ]; then - encryption="true" -else - encryption="false" -fi - #================================================= # STORE SETTINGS FROM MANIFEST #=================================================