mirror of
https://github.com/YunoHost-Apps/zeronet_ynh.git
synced 2024-09-03 17:46:12 +02:00
Fixes package_check configuration
as app can only be installed on root path
This commit is contained in:
parent
913169bf67
commit
31f19deb58
1 changed files with 18 additions and 16 deletions
|
@ -2,31 +2,33 @@
|
||||||
auto_remove=1
|
auto_remove=1
|
||||||
# Commentaire ignoré
|
# Commentaire ignoré
|
||||||
; Manifest
|
; Manifest
|
||||||
domain="domain.tld" (DOMAIN)
|
domain="sub.domain.tld" (DOMAIN)
|
||||||
path="/path" (PATH)
|
# path="/" (PATH)
|
||||||
admin="john" (USER)
|
admin="john" (USER)
|
||||||
language="fr"
|
# language="fr"
|
||||||
# is_public="Yes" (PUBLIC|public=Yes|private=No)
|
# is_public="Yes" (PUBLIC|public=Yes|private=No)
|
||||||
is_public=0 (PUBLIC|public=1|private=0)
|
# is_public=0 (PUBLIC|public=1|private=0)
|
||||||
password="pass" (PASSWORD)
|
# port="666" (PORT)
|
||||||
port="666" (PORT)
|
|
||||||
; Checks
|
; Checks
|
||||||
pkg_linter=1
|
pkg_linter=1
|
||||||
setup_sub_dir=1
|
setup_sub_dir=0
|
||||||
setup_root=1
|
# setup_sub_dir=0 test disabled because app is always installed on /
|
||||||
|
setup_root=1
|
||||||
setup_nourl=0
|
setup_nourl=0
|
||||||
setup_private=1
|
setup_private=0
|
||||||
|
# setup_private=0 test disabled because app is always installed as private
|
||||||
setup_public=0
|
setup_public=0
|
||||||
upgrade=1
|
upgrade=1
|
||||||
backup_restore=1
|
backup_restore=1
|
||||||
# multi_instance=1 fails because app can only be installed on sub-domain. manual test succeeded.
|
multi_instance=0
|
||||||
wrong_user=0
|
# multi_instance=1 test disabled because it requires installation on sub-path which is not available. successfully conducted test manually
|
||||||
wrong_path=1
|
wrong_user=1
|
||||||
incorrect_path=1
|
wrong_path=0
|
||||||
corrupt_source=0
|
incorrect_path=0
|
||||||
|
# corrupt_source=0
|
||||||
fail_download_source=0
|
fail_download_source=0
|
||||||
port_already_use=1 (66)
|
port_already_use=1 (66)
|
||||||
final_path_already_use=0
|
final_path_already_use=1
|
||||||
;;; Levels
|
;;; Levels
|
||||||
Level 1=auto
|
Level 1=auto
|
||||||
Level 2=auto
|
Level 2=auto
|
||||||
|
|
Loading…
Reference in a new issue