1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/freshrss_ynh.git synced 2024-09-03 18:36:33 +02:00

use ynh error handler helper

This commit is contained in:
Clément 2018-10-21 17:55:39 +02:00
parent 2d500ff03e
commit 22bd9569c4
3 changed files with 23 additions and 8 deletions

View file

@ -1,10 +1,15 @@
#!/bin/bash
set -eu
# Source app helpers
. /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
# retrieve useful param
app=$YNH_APP_INSTANCE_NAME
path=/var/www/$app

View file

@ -1,11 +1,15 @@
#!/bin/bash
# Exit on command errors and treat unset variables as an error
set -u
# Source app helpers
. /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
app=$YNH_APP_INSTANCE_NAME
db_user=$app
db_name=$app

View file

@ -1,13 +1,19 @@
#!/bin/bash
# Exit on command errors and treat unset variables as an error
set -eu
# Load common variables and helpers
. ./_common.sh
# Source app helpers
. /usr/share/yunohost/helpers
#=================================================
# MANAGE SCRIPT FAILURE
#=================================================
# Exit if an error occurs during the execution of the script
ynh_abort_if_errors
app=$YNH_APP_INSTANCE_NAME
FINAL_PATH="/var/www/$app"