mirror of
https://github.com/YunoHost-Apps/cultivons_ynh.git
synced 2024-09-03 18:16:27 +02:00
Merge branch 'master' into testing
This commit is contained in:
commit
4203a9fb0b
6 changed files with 12 additions and 7 deletions
|
@ -58,6 +58,9 @@ With __cultivons!__, you can manage
|
||||||
## Documentation and resources
|
## Documentation and resources
|
||||||
|
|
||||||
* Official app website: <https://xulops.net/forge/cultivons.php>
|
* Official app website: <https://xulops.net/forge/cultivons.php>
|
||||||
|
* Official user documentation: <https://xulops.net/forge/cultivons.php?menu=about>
|
||||||
|
* Official admin documentation: <https://xulops.net/forge/cultivons.php?menu=about>
|
||||||
|
* Upstream app code repository: <https://xulops.net/forge/cultivons.php?menu=download>
|
||||||
* YunoHost documentation for this app: <https://yunohost.org/app_cultivons>
|
* YunoHost documentation for this app: <https://yunohost.org/app_cultivons>
|
||||||
* Report a bug: <https://github.com/YunoHost-Apps/cultivons_ynh/issues>
|
* Report a bug: <https://github.com/YunoHost-Apps/cultivons_ynh/issues>
|
||||||
|
|
||||||
|
|
|
@ -56,6 +56,9 @@ Avec __Cultivons!__, vous pouvez gérer
|
||||||
## Documentations et ressources
|
## Documentations et ressources
|
||||||
|
|
||||||
* Site officiel de l'app : <https://xulops.net/forge/cultivons.php>
|
* Site officiel de l'app : <https://xulops.net/forge/cultivons.php>
|
||||||
|
* Documentation officielle utilisateur : <https://xulops.net/forge/cultivons.php?menu=about>
|
||||||
|
* Documentation officielle de l'admin : <https://xulops.net/forge/cultivons.php?menu=about>
|
||||||
|
* Dépôt de code officiel de l'app : <https://xulops.net/forge/cultivons.php?menu=download>
|
||||||
* Documentation YunoHost pour cette app : <https://yunohost.org/app_cultivons>
|
* Documentation YunoHost pour cette app : <https://yunohost.org/app_cultivons>
|
||||||
* Signaler un bug : <https://github.com/YunoHost-Apps/cultivons_ynh/issues>
|
* Signaler un bug : <https://github.com/YunoHost-Apps/cultivons_ynh/issues>
|
||||||
|
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
;; Test complet
|
;; Test complet
|
||||||
; Manifest
|
; Manifest
|
||||||
domain="domain.tld"
|
domain="domain.tld"
|
||||||
path="/path"
|
|
||||||
is_public=0
|
is_public=0
|
||||||
; Checks
|
; Checks
|
||||||
pkg_linter=1
|
pkg_linter=1
|
||||||
|
|
|
@ -22,7 +22,7 @@ location __PATH__/ {
|
||||||
}
|
}
|
||||||
|
|
||||||
# Protection de certains repertoires
|
# Protection de certains repertoires
|
||||||
location ~ /(db|logs|tmp|image)/ {
|
location ~ /(db|logs|tmp)/ {
|
||||||
deny all;
|
deny all;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -12,9 +12,9 @@
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"website": "https://xulops.net/forge/cultivons.php",
|
"website": "https://xulops.net/forge/cultivons.php",
|
||||||
"demo": "https://cultivons-demo.xulops.net",
|
"demo": "https://cultivons-demo.xulops.net",
|
||||||
"admindoc": "",
|
"admindoc": "https://xulops.net/forge/cultivons.php?menu=about",
|
||||||
"userdoc": "",
|
"userdoc": "https://xulops.net/forge/cultivons.php?menu=about",
|
||||||
"code": ""
|
"code": "https://xulops.net/forge/cultivons.php?menu=download"
|
||||||
},
|
},
|
||||||
"license": "Apache-2.0",
|
"license": "Apache-2.0",
|
||||||
"maintainer": {
|
"maintainer": {
|
||||||
|
|
|
@ -46,9 +46,9 @@ ynh_abort_if_errors
|
||||||
#=================================================
|
#=================================================
|
||||||
# STOP SYSTEMD SERVICE
|
# STOP SYSTEMD SERVICE
|
||||||
#=================================================
|
#=================================================
|
||||||
ynh_script_progression --message="Stopping a systemd service..." --weight=1
|
#ynh_script_progression --message="Stopping a systemd service..." --weight=1
|
||||||
|
|
||||||
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
|
#ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
|
||||||
|
|
||||||
#=================================================
|
#=================================================
|
||||||
# CREATE DEDICATED USER
|
# CREATE DEDICATED USER
|
||||||
|
|
Loading…
Reference in a new issue