mirror of
https://github.com/YunoHost-Apps/bozon_ynh.git
synced 2024-09-03 18:16:09 +02:00
commit
6125178070
2 changed files with 12 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
||||||
domain="domain.tld" (DOMAIN)
|
domain="domain.tld" (DOMAIN)
|
||||||
path="/path" (PATH)
|
path="/path" (PATH)
|
||||||
is_public=1
|
is_public=1
|
||||||
language="en"
|
language="fr"
|
||||||
filesize="2G"
|
filesize="2G"
|
||||||
admin="john" (USER)
|
admin="john" (USER)
|
||||||
password="super_secret_password" (PASSWORD)
|
password="super_secret_password" (PASSWORD)
|
||||||
|
@ -17,6 +17,7 @@
|
||||||
setup_private=0
|
setup_private=0
|
||||||
setup_public=1
|
setup_public=1
|
||||||
upgrade=1
|
upgrade=1
|
||||||
|
upgrade=1 from_commit=03e787291ba1104f195fdeb5103071b9546b4ad5
|
||||||
backup_restore=1
|
backup_restore=1
|
||||||
multi_instance=0
|
multi_instance=0
|
||||||
wrong_user=1
|
wrong_user=1
|
||||||
|
@ -39,3 +40,10 @@
|
||||||
Level 8=0
|
Level 8=0
|
||||||
Level 9=0
|
Level 9=0
|
||||||
Level 10=0
|
Level 10=0
|
||||||
|
;;; Options
|
||||||
|
Email=
|
||||||
|
Notification=none
|
||||||
|
;;; Upgrade options
|
||||||
|
; commit=03e787291ba1104f195fdeb5103071b9546b4ad5
|
||||||
|
name=Use official helper
|
||||||
|
manifest_arg=domain=DOMAIN&path=PATH&is_public=1&language="fr"&filesize="2G"&admin=USER&password=PASSWORD&backup_core_only=1&
|
||||||
|
|
|
@ -4,6 +4,9 @@
|
||||||
|
|
||||||
# Package dependencies
|
# Package dependencies
|
||||||
PKG_DEPENDENCIES="php5-curl php5-gd"
|
PKG_DEPENDENCIES="php5-curl php5-gd"
|
||||||
|
if [ "$(lsb_release --codename --short)" != "jessie" ]; then
|
||||||
|
PKG_DEPENDENCIES="$PKG_DEPENDENCIES php-zip"
|
||||||
|
fi
|
||||||
|
|
||||||
# Check if directory/file already exists (path in argument)
|
# Check if directory/file already exists (path in argument)
|
||||||
myynh_check_path () {
|
myynh_check_path () {
|
||||||
|
|
Loading…
Reference in a new issue