Skip to content

Commit 4df62cb

Browse files
committedJun 4, 2023
fix
1 parent e406907 commit 4df62cb

File tree

5 files changed

+697
-34
lines changed

5 files changed

+697
-34
lines changed
 

‎LICENSE

+674-20
Large diffs are not rendered by default.

‎config_panel.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
version = "1.0"
22

33
[main]
4-
name = "Hibzilla configuration"
4+
name = "Hubzilla configuration"
55

66
[main.php_fpm_config]
77
name = "PHP-FPM configuration"

‎manifest.toml

+3-4
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@ yunohost = ">= 11.1.19"
1919
architectures = "all"
2020
multi_instance = true
2121
ldap = true
22-
sso = false
22+
sso = true
2323
disk = "50M"
24-
ram.build = "50M"
24+
ram.build = "200M"
2525
ram.runtime = "50M"
2626

2727
[install]
@@ -33,7 +33,7 @@ ram.runtime = "50M"
3333
type = "user"
3434

3535
[install.database]
36-
ask.en = "Choose the database to be used for the Hubzilla"
36+
ask.en = "Choose Hubzilla database"
3737
ask.fr = "Choisissez la database de Hubzilla"
3838
type = "string"
3939
choices = ["mysql", "postgresql"]
@@ -49,7 +49,6 @@ ram.runtime = "50M"
4949
url = "https://framagit.org/hubzilla/addons/-/archive/8.4.1/addons-8.4.1.tar.gz"
5050
sha256 = "67f7b881f195b258c3d61922a6ce0f92832b907cafd5feb11b8abea4b2b055a0"
5151

52-
5352
[resources.system_user]
5453

5554
[resources.install_dir]

‎scripts/_common.sh

-9
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,6 @@
66
# PHP APP SPECIFIC
77
#=================================================
88

9-
#REMOVEME? YNH_PHP_VERSION="8.2"
10-
11-
#REMOVEME? php_dependencies="php${YNH_PHP_VERSION}-curl php${YNH_PHP_VERSION}-gd php${YNH_PHP_VERSION}-mysql php${YNH_PHP_VERSION}-mbstring php${YNH_PHP_VERSION}-xml php${YNH_PHP_VERSION}-zip php${YNH_PHP_VERSION}-cli php${YNH_PHP_VERSION}-imagick php${YNH_PHP_VERSION}-pgsql php${YNH_PHP_VERSION}-json"
12-
13-
# dependencies used by the app (must be on a single line)
14-
#REMOVEME? pkg_dependencies="$php_dependencies"
15-
16-
#REMOVEME? pg_pkg_dependencies="postgresql postgresql-contrib"
17-
189
#=================================================
1910
# PERSONAL HELPERS
2011
#=================================================

‎tests.toml

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
11
test_format = 1.0
22

33
[default]
4+
5+
6+
# ------------
7+
# Tests to run
8+
# ------------
9+
10+
exclude = ["change_url"]
11+
12+
# -------------------------------
13+
# Default args to use for install
14+
# -------------------------------
15+
16+
args.database="mysql"
17+
18+
[some_additional_testsuite]
19+
20+
only = ["install.subdir"]
21+
22+
args.database="mpostgresql"

0 commit comments

Comments
 (0)
Please sign in to comment.