1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/cryptpad_ynh.git synced 2024-09-03 18:26:14 +02:00

Merge pull request #172 from YunoHost-Apps/testing

Testing
This commit is contained in:
DDATAA 2023-02-16 08:26:39 +00:00 committed by GitHub
commit 2ddffd382b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 6 deletions

View file

@ -18,7 +18,7 @@ If you don't have YunoHost, please consult [the guide](https://yunohost.org/#/in
CryptPad is a collaboration suite that is end-to-end-encrypted and open-source. It is built to enable collaboration, synchronizing changes to documents in real time. Because all data is encrypted, the service and its administrators have no way of seeing the content being edited and stored. CryptPad is a collaboration suite that is end-to-end-encrypted and open-source. It is built to enable collaboration, synchronizing changes to documents in real time. Because all data is encrypted, the service and its administrators have no way of seeing the content being edited and stored.
**Shipped version:** 5.2.1~ynh3 **Shipped version:** 5.2.1~ynh4
**Demo:** https://cryptpad.fr/ **Demo:** https://cryptpad.fr/

View file

@ -18,7 +18,7 @@ Si vous navez pas YunoHost, regardez [ici](https://yunohost.org/#/install) po
CryptPad est une suite de collaboration chiffrée de bout en bout et open source. Il est conçu pour permettre la collaboration, en synchronisant les modifications apportées aux documents en temps réel. Étant donné que toutes les données sont chiffrées, le service et ses administrateurs n'ont aucun moyen de voir le contenu modifié et stocké. CryptPad est une suite de collaboration chiffrée de bout en bout et open source. Il est conçu pour permettre la collaboration, en synchronisant les modifications apportées aux documents en temps réel. Étant donné que toutes les données sont chiffrées, le service et ses administrateurs n'ont aucun moyen de voir le contenu modifié et stocké.
**Version incluse :** 5.2.1~ynh3 **Version incluse :** 5.2.1~ynh4
**Démo :** https://cryptpad.fr/ **Démo :** https://cryptpad.fr/

View file

@ -6,7 +6,7 @@
"en": "Zero Knowledge realtime collaborative office suite", "en": "Zero Knowledge realtime collaborative office suite",
"fr": "Suite bureautique chiffrée pour la collaboration en temps réel" "fr": "Suite bureautique chiffrée pour la collaboration en temps réel"
}, },
"version": "5.2.1~ynh3", "version": "5.2.1~ynh4",
"url": "https://cryptpad.fr/", "url": "https://cryptpad.fr/",
"upstream": { "upstream": {
"license": "AGPL-3.0-only", "license": "AGPL-3.0-only",

View file

@ -118,12 +118,15 @@ if [[ $domain == *".local" ]]; then
sandboxdomain=sandbox-$domain sandboxdomain=sandbox-$domain
fi fi
ynh_script_progression --message="Setting up sandobx domain : $sandboxdomain" --weight=1 ynh_script_progression --message="Setting up sandobx domain: $sandboxdomain" --weight=1
# We don't test that in CI # We don't test that in CI
if ! [ ${PACKAGE_CHECK_EXEC:-0} -eq 1 ]; then if ! [ ${PACKAGE_CHECK_EXEC:-0} -eq 1 ]; then
yunohost domain add $sandboxdomain # If sandboxdomain doesn't exist, create it
yunohost domain config set $sandboxdomain -a "mail_in=0&mail_out=0" if [ -z "$sandboxdomain" ]; then
yunohost domain add $sandboxdomain
yunohost domain config set $sandboxdomain -a "mail_in=0&mail_out=0"
fi
fi fi
#================================================= #=================================================