mirror of
https://github.com/YunoHost-Apps/rocketchat_ynh.git
synced 2024-09-03 20:16:25 +02:00
commit
b5f0e92d4a
2 changed files with 13 additions and 14 deletions
20
README_fr.md
20
README_fr.md
|
@ -5,15 +5,15 @@ It shall NOT be edited by hand.
|
|||
|
||||
# Rocket.Chat pour YunoHost
|
||||
|
||||
[](https://dash.yunohost.org/appci/app/rocketchat)  
|
||||
[](https://dash.yunohost.org/appci/app/rocketchat)  
|
||||
[](https://install-app.yunohost.org/?app=rocketchat)
|
||||
|
||||
*[Read this readme in english.](./README.md)*
|
||||
|
||||
> *Ce package vous permet d'installer Rocket.Chat rapidement et simplement sur un serveur YunoHost.
|
||||
Si vous n'avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l'installer et en profiter.*
|
||||
> *Ce package vous permet d’installer Rocket.Chat rapidement et simplement sur un serveur YunoHost.
|
||||
Si vous n’avez pas YunoHost, regardez [ici](https://yunohost.org/#/install) pour savoir comment l’installer et en profiter.*
|
||||
|
||||
## Vue d'ensemble
|
||||
## Vue d’ensemble
|
||||
|
||||
Rocket.Chat est une plate-forme de communication open source entièrement personnalisable développée en JavaScript pour les organisations avec des normes élevées de protection des données.
|
||||
|
||||
|
@ -30,9 +30,9 @@ Rocket.Chat est une plate-forme de communication open source entièrement person
|
|||
|
||||
**Démo :** https://cloud.rocket.chat/trial
|
||||
|
||||
## Captures d'écran
|
||||
## Captures d’écran
|
||||
|
||||

|
||||

|
||||
|
||||
## Avertissements / informations importantes
|
||||
|
||||
|
@ -60,10 +60,10 @@ En plus de l'interface Web, vous pouvez également télécharger les clients Roc
|
|||
|
||||
## Documentations et ressources
|
||||
|
||||
* Site officiel de l'app : <https://rocket.chat/>
|
||||
* Site officiel de l’app : <https://rocket.chat/>
|
||||
* Documentation officielle utilisateur : <https://docs.rocket.chat/guides/user-guides>
|
||||
* Documentation officielle de l'admin : <https://docs.rocket.chat/>
|
||||
* Dépôt de code officiel de l'app : <https://github.com/RocketChat/Rocket.Chat>
|
||||
* Documentation officielle de l’admin : <https://docs.rocket.chat/>
|
||||
* Dépôt de code officiel de l’app : <https://github.com/RocketChat/Rocket.Chat>
|
||||
* Documentation YunoHost pour cette app : <https://yunohost.org/app_rocketchat>
|
||||
* Signaler un bug : <https://github.com/YunoHost-Apps/rocketchat_ynh/issues>
|
||||
|
||||
|
@ -79,4 +79,4 @@ ou
|
|||
sudo yunohost app upgrade rocketchat -u https://github.com/YunoHost-Apps/rocketchat_ynh/tree/testing --debug
|
||||
```
|
||||
|
||||
**Plus d'infos sur le packaging d'applications :** <https://yunohost.org/packaging_apps>
|
||||
**Plus d’infos sur le packaging d’applications :** <https://yunohost.org/packaging_apps>
|
|
@ -18,7 +18,6 @@ pkg_dependencies="apt-transport-https build-essential gzip curl fontconfig graph
|
|||
#=================================================
|
||||
# EXPERIMENTAL HELPERS
|
||||
#=================================================
|
||||
#!/bin/bash
|
||||
|
||||
readonly YNH_DEFAULT_MONGO_VERSION=4.4
|
||||
# Declare the actual MongoDB version to use: 4.4 ; 5.0
|
||||
|
@ -109,7 +108,7 @@ ynh_mongo_exec() {
|
|||
database=""
|
||||
fi
|
||||
|
||||
mongosh --quiet $user $password $authenticationdatabase $host $port <<EOF
|
||||
mongosh --quiet --username $user --password $password --authenticationDatabase $authenticationdatabase --host $host --port $port <<EOF
|
||||
$database
|
||||
${command}
|
||||
quit()
|
||||
|
@ -123,7 +122,7 @@ EOF
|
|||
database=""
|
||||
fi
|
||||
|
||||
mongosh --quiet $database $user $password $authenticationdatabase $host $port --eval="$command"
|
||||
mongosh --quiet $database --username $user --password $password --authenticationDatabase $authenticationdatabase --host $host --port $port --eval="$command"
|
||||
fi
|
||||
}
|
||||
|
||||
|
@ -333,7 +332,7 @@ ynh_install_mongo() {
|
|||
mongo_version="${mongo_version:-$YNH_MONGO_VERSION}"
|
||||
|
||||
ynh_print_info --message="Installing MongoDB Community Edition..."
|
||||
ynh_install_extra_app_dependencies --repo="deb http://repo.mongodb.org/apt/debian bullseye/mongodb-org/$mongo_version main" --package="mongodb-org mongodb-org-server mongodb-org-tools mongodb-mongosh" --key="https://www.mongodb.org/static/pgp/server-$mongo_version.asc"
|
||||
ynh_install_extra_app_dependencies --repo="deb http://repo.mongodb.org/apt/debian buster/mongodb-org/$mongo_version main" --package="mongodb-org mongodb-org-server mongodb-org-tools mongodb-mongosh" --key="https://www.mongodb.org/static/pgp/server-$mongo_version.asc"
|
||||
mongodb_servicename=mongod
|
||||
|
||||
# Make sure MongoDB is started and enabled
|
||||
|
|
Loading…
Add table
Reference in a new issue