1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/yellow_ynh.git synced 2024-09-03 20:36:12 +02:00
This commit is contained in:
ericgaspar 2021-01-28 22:22:36 +01:00
parent 12f5fa32ab
commit 22d3c05e14
No known key found for this signature in database
GPG key ID: 574F281483054D44
3 changed files with 4 additions and 8 deletions

View file

@ -6,7 +6,7 @@
"en": "Système de gestion de contenu (CMS) for simple website", "en": "Système de gestion de contenu (CMS) for simple website",
"fr": "Content management system (CMS) pour un site simple" "fr": "Content management system (CMS) pour un site simple"
}, },
"version": "0.8.16~ynh2", "version": "0.8.16~ynh3",
"url": "https://datenstrom.se/yellow/", "url": "https://datenstrom.se/yellow/",
"license": "GPL-2.0-only", "license": "GPL-2.0-only",
"maintainer": { "maintainer": {

View file

@ -13,6 +13,4 @@
## Package_check results ## Package_check results
--- ---
*If you have access to [App Continuous Integration for packagers](https://yunohost.org/#/packaging_apps_ci) you can provide a link to the package_check results like below, replacing '-NUM-' in this link by the PR number and USERNAME by your username on the ci-apps-dev. Or you provide a screenshot or a pastebin of the results* * An automatic package_check will be launch at https://ci-apps-dev.yunohost.org/, when you add a specific comment to your Pull Request: "!testme", "!gogogadgetoci" or "By the power of systemd, I invoke The Great App CI to test this Pull Request!"*
[![Build Status](https://ci-apps-dev.yunohost.org/jenkins/job/yellow_ynh%20PR-NUM-%20(USERNAME)/badge/icon)](https://ci-apps-dev.yunohost.org/jenkins/job/yellow_ynh%20PR-NUM-%20(USERNAME)/)

View file

@ -91,14 +91,12 @@ chmod -R a+rw $final_path
#================================================= #=================================================
# SETUP SSOWAT # SETUP SSOWAT
#================================================= #=================================================
ynh_script_progression --message="Configuring SSOwat..." --weight=1 ynh_script_progression --message="Configuring permissions..." --weight=1
# Make app public if necessary or protect it # Make app public if necessary or protect it
if [ $is_public -eq 1 ] if [ $is_public -eq 1 ]
then then
# Everyone can access the app. ynh_permission_update --permission="main" --add="visitors"
# The "main" permission is automatically created before the install script.
ynh_permission_update --permission "main" --add "visitors"
fi fi
#================================================= #=================================================