Skip to content

Commit

Permalink
Merge branch 'master' into service_integration
Browse files Browse the repository at this point in the history
  • Loading branch information
yalh76 committed Jun 16, 2020
2 parents 67437ba + 7d726ec commit 370d562
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 29 deletions.
26 changes: 13 additions & 13 deletions README_fr.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@

*[Read this readme in english.](./README.md)*

> *Ce package vous permet d'installer REPLACEBYYOURAPP rapidement et simplement sur un serveur Yunohost.
> *Ce package vous permet d'installer REPLACEBYYOURAPP rapidement et simplement sur un serveur YunoHost.
Si vous n'avez pas YunoHost, consultez [le guide](https://yunohost.org/#/install) pour apprendre comment l'installer.*

## Vue d'ensemble
Description rapide de cette application.

**Version incluse:** 1.0
**Version incluse :** 1.0

## Captures d'écran

Expand All @@ -23,23 +23,23 @@ Description rapide de cette application.

## Configuration

Comment configurer cette application: via le panneau d'administration, un fichier brut en SSH ou tout autre moyen.
Comment configurer cette application : via le panneau d'administration, un fichier brut en SSH ou tout autre moyen.

## Documentation

* Documentation officielle: Lien vers la documentation officielle de cette application.
* Documentation YunoHost: Si une documentation spécifique est nécessaire, n'hésitez pas à contribuer.
* Documentation officielle : Lien vers la documentation officielle de cette application.
* Documentation YunoHost : Si une documentation spécifique est nécessaire, n'hésitez pas à contribuer.

## Caractéristiques spécifiques YunoHost

#### Support multi-utilisateur

L'authentification LDAP et HTTP est-elle prise en charge?
L'application peut-elle être utilisée par plusieurs utilisateurs?
* L'authentification LDAP et HTTP est-elle prise en charge ?
* L'application peut-elle être utilisée par plusieurs utilisateurs ?

#### Architectures supportées

* x86-64b - [![Build Status](https://ci-apps.yunohost.org/ci/logs/REPLACEBYYOURAPP%20%28Apps%29.svg)](https://ci-apps.yunohost.org/ci/apps/REPLACEBYYOURAPP/)
* x86-64 - [![Build Status](https://ci-apps.yunohost.org/ci/logs/REPLACEBYYOURAPP%20%28Apps%29.svg)](https://ci-apps.yunohost.org/ci/apps/REPLACEBYYOURAPP/)
* ARMv8-A - [![Build Status](https://ci-apps-arm.yunohost.org/ci/logs/REPLACEBYYOURAPP%20%28Apps%29.svg)](https://ci-apps-arm.yunohost.org/ci/apps/REPLACEBYYOURAPP/)

## Limitations
Expand All @@ -50,15 +50,15 @@ L'application peut-elle être utilisée par plusieurs utilisateurs?

* Autres informations que vous souhaitez ajouter sur cette application.

**Plus d'informations sur la page de documentation:**
**Plus d'informations sur la page de documentation :**
https://yunohost.org/packaging_apps

## Liens

* Signaler un bug: https://github.com/YunoHost-Apps/REPLACEBYYOURAPP_ynh/issues
* Site de l'application: Lien vers le site officiel de cette application.
* Dépôt de l'application principale: Lien vers le dépôt officiel de l'application principale.
* Site web YunoHost: https://yunohost.org/
* Signaler un bug : https://github.com/YunoHost-Apps/REPLACEBYYOURAPP_ynh/issues
* Site de l'application : Lien vers le site officiel de cette application.
* Dépôt de l'application principale : Lien vers le dépôt officiel de l'application principale.
* Site web YunoHost : https://yunohost.org/

---

Expand Down
4 changes: 3 additions & 1 deletion scripts/backup
Original file line number Diff line number Diff line change
Expand Up @@ -83,11 +83,13 @@ ynh_backup --src_path="/etc/logrotate.d/$app"
ynh_backup --src_path="/etc/systemd/system/$app.service"

#=================================================
# BACKUP A CRON FILE
# BACKUP VARIOUS FILES
#=================================================

ynh_backup --src_path="/etc/cron.d/$app"

ynh_backup --src_path="/etc/$app/"

#=================================================
# BACKUP THE MYSQL DATABASE
#=================================================
Expand Down
2 changes: 1 addition & 1 deletion scripts/remove
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ ynh_remove_fail2ban_config
#=================================================
# SPECIFIC REMOVE
#=================================================
# REMOVE THE CRON FILE
# REMOVE VARIOUS FILES
#=================================================

# Remove a cron file
Expand Down
4 changes: 3 additions & 1 deletion scripts/restore
Original file line number Diff line number Diff line change
Expand Up @@ -132,11 +132,13 @@ ynh_script_progression --message="Starting a systemd service..." --time --weight
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"

#=================================================
# RESTORE THE CRON FILE
# RESTORE VARIOUS FILES
#=================================================

ynh_restore_file --origin_path="/etc/cron.d/$app"

ynh_restore_file --origin_path="/etc/$app/"

#=================================================
# RESTORE THE LOGROTATE CONFIGURATION
#=================================================
Expand Down
33 changes: 20 additions & 13 deletions scripts/upgrade
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,14 @@ ynh_add_fpm_config
# ...
#=================================================

#=================================================
# SETUP SYSTEMD
#=================================================
ynh_script_progression --message="Upgrading systemd configuration..." --time --weight=1

# Create a dedicated systemd config
ynh_add_systemd_config

#=================================================
# MODIFY A CONFIG FILE
#=================================================
Expand All @@ -159,6 +167,15 @@ ynh_replace_string --match_string="match_string" --replace_string="replace_strin
# Recalculate and store the checksum of the file for the next upgrade.
ynh_store_file_checksum --file="$final_path/CONFIG_FILE"

#=================================================
# GENERIC FINALIZATION
#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================

# Set permissions on app files
chown -R root: $final_path

#=================================================
# SETUP LOGROTATE
#=================================================
Expand All @@ -168,15 +185,12 @@ ynh_script_progression --message="Upgrading logrotate configuration..." --time -
ynh_use_logrotate --non-append

#=================================================
# SETUP SYSTEMD
# START SYSTEMD SERVICE
#=================================================
ynh_script_progression --message="Upgrading systemd configuration..." --time --weight=1
ynh_script_progression --message="Starting a systemd service..." --time --weight=1

# Create a dedicated systemd config
ynh_add_systemd_config
ynh_systemd_action --service_name=$app --action="start" --log_path="/var/log/$app/$app.log"

#=================================================
# GENERIC FINALIZATION
#=================================================
# UPGRADE FAIL2BAN
#=================================================
Expand All @@ -185,13 +199,6 @@ ynh_script_progression --message="Reconfiguring fail2ban..." --time --weight=1
# Create a dedicated fail2ban config
ynh_add_fail2ban_config --logpath="/var/log/nginx/${domain}-error.log" --failregex="Regex to match into the log for a failed login"

#=================================================
# SECURE FILES AND DIRECTORIES
#=================================================

# Set permissions on app files
chown -R root: $final_path

#=================================================
# SETUP SSOWAT
#=================================================
Expand Down

0 comments on commit 370d562

Please sign in to comment.