1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mineweb_ynh.git synced 2024-09-03 19:45:54 +02:00
* Fix linter warnings
This commit is contained in:
Éric Gaspar 2021-04-25 17:56:31 +02:00 committed by GitHub
parent 505678faca
commit 2c70b02629
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 9 additions and 39 deletions

View file

@ -35,8 +35,8 @@ How to configure this app: From an admin panel, a plain file with SSH, or any ot
#### Supported architectures
* x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/mineweb%20%28Apps%29.svg)](https://ci-apps.yunohost.org/ci/apps/mineweb/)
* ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/minewebP%20%28Apps%29.svg)](https://ci-apps-arm.yunohost.org/ci/apps/mineweb/)
* x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/mineweb.svg)](https://ci-apps.yunohost.org/ci/apps/mineweb/)
* ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/mineweb.svg)](https://ci-apps-arm.yunohost.org/ci/apps/mineweb/)
## Limitations

View file

@ -35,8 +35,8 @@ Comment configurer cette application : via le panneau d'administration
#### Architectures supportées
* x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/mineweb%20%28Apps%29.svg)](https://ci-apps.yunohost.org/ci/apps/mineweb/)
* ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/minewebP%20%28Apps%29.svg)](https://ci-apps-arm.yunohost.org/ci/apps/mineweb/)
* x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/mineweb.svg)](https://ci-apps.yunohost.org/ci/apps/mineweb/)
* ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/mineweb.svg)](https://ci-apps-arm.yunohost.org/ci/apps/mineweb/)
## Limitations

View file

@ -16,7 +16,6 @@
upgrade=1
backup_restore=1
multi_instance=1
port_already_use=0
change_url=0
;;; Options
Email=

View file

@ -5,7 +5,7 @@ class DATABASE_CONFIG {
'datasource' => 'Database/Mysql',
'persistent' => false,
'host' => 'localhost',
'login' => '__DB_USER__',
'login' => '__DB_NAME__',
'password' => '__DB_PWD__',
'database' => '__DB_NAME__',
'encoding' => 'utf8',

View file

@ -6,7 +6,7 @@
"en": "Customizable and intuitive CMS.",
"fr": "CMS personnalisable et intuitif."
},
"version": "1.13.0~ynh2",
"version": "1.13.0~ynh3",
"url": "https://mineweb.org/",
"license": "AGPL-3.0-only",
"maintainer": {
@ -26,29 +26,17 @@
"install": [{
"name": "domain",
"type": "domain",
"ask": {
"en": "Choose a domain name for MineWeb",
"fr": "Choisissez un nom de domaine pour MineWeb"
},
"example": "example.com"
},
{
"name": "path",
"type": "path",
"ask": {
"en": "Choose a path for MineWeb",
"fr": "Choisissez un chemin pour MineWeb"
},
"example": "/mineweb",
"default": "/mineweb"
},
{
"name": "is_public",
"type": "boolean",
"ask": {
"en": "Is it a public site?",
"fr": "Est-ce un site public ?"
},
"help": {
"en": "If enabled, MineWeb will be accessible by people who do not have an account. This can be changed later via the webadmin.",
"fr": "Si cette case est cochée, MineWeb sera accessible aux personnes nayant pas de compte. Vous pourrez changer ceci plus tard via la webadmin."

View file

@ -13,6 +13,4 @@
## 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*
[![Build Status](https://ci-apps-dev.yunohost.org/jenkins/job/mineweb_ynh%20PR-NUM-%20(USERNAME)/badge/icon)](https://ci-apps-dev.yunohost.org/jenkins/job/mineweb_ynh%20PR-NUM-%20(USERNAME)/)
* 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!"*

View file

@ -58,7 +58,6 @@ ynh_script_progression --message="Creating a MySQL database..." --weight=2
db_name=$(ynh_sanitize_dbid $app)
ynh_app_setting_set --app=$app --key=db_name --value=$db_name
ynh_mysql_setup_db --db_user=$db_name --db_name=$db_name
db_pwd=$(ynh_app_setting_get --app=$app --key=mysqlpwd)
#=================================================
# DOWNLOAD, CHECK AND UNPACK SOURCE
@ -98,13 +97,7 @@ phpversion=$(ynh_app_setting_get --app=$app --key=phpversion)
# MODIFY A CONFIG FILE
#=================================================
cp -a ../conf/database.php $final_path/app/Config/database.php
ynh_replace_string --match_string="__DB_USER__" --replace_string="$db_name" --target_file="$final_path/app/Config/database.php"
ynh_replace_string --match_string="__DB_PWD__" --replace_string="$db_pwd" --target_file="$final_path/app/Config/database.php"
ynh_replace_string --match_string="__DB_NAME__" --replace_string="$db_name" --target_file="$final_path/app/Config/database.php"
ynh_store_file_checksum --file="$final_path/app/Config/database.php"
ynh_add_config --template="../conf/database.php" --destination="$final_path/app/Config/database.php"
#=================================================
# MODIFY FIRST.CTP

View file

@ -109,15 +109,7 @@ ynh_add_fpm_config --package="$extra_php_dependencies"
# MODIFY A CONFIG FILE
#=================================================
ynh_backup_if_checksum_is_different --file="$final_path/app/Config/database.php"
cp -a ../conf/database.php $final_path/app/Config/database.php
ynh_replace_string --match_string="__DB_USER__" --replace_string="$db_name" --target_file="$final_path/app/Config/database.php"
ynh_replace_string --match_string="__DB_PWD__" --replace_string="$db_pwd" --target_file="$final_path/app/Config/database.php"
ynh_replace_string --match_string="__DB_NAME__" --replace_string="$db_name" --target_file="$final_path/app/Config/database.php"
ynh_store_file_checksum --file="$final_path/app/Config/database.php"
ynh_add_config --template="../conf/database.php" --destination="$final_path/app/Config/database.php"
#=================================================
# MODIFY FIRST.CTP