mirror of
https://github.com/YunoHost-Apps/mstream_ynh.git
synced 2024-09-03 19:46:17 +02:00
fix
This commit is contained in:
parent
59b1f893a7
commit
453826bda5
4 changed files with 6 additions and 6 deletions
|
@ -9,7 +9,7 @@ Group=__APP__
|
|||
Environment=NODE_PORT=__PORT__
|
||||
WorkingDirectory=__INSTALL_DIR__/
|
||||
Environment="PATH=__ENV_PATH__"
|
||||
ExecStart=__YNH_NODE__ __INSTALL_DIR__/cli-boot-wrapper.js
|
||||
ExecStart=__YNH_NODE__ __INSTALL_DIR__/cli-boot-wrapper.js -j __INSTALL_DIR__/config.json
|
||||
Restart=on-failure
|
||||
|
||||
# Sandboxing options to harden security
|
||||
|
|
|
@ -46,10 +46,10 @@ ynh_add_nginx_config
|
|||
#=================================================
|
||||
ynh_script_progression --message="Adding a configuration file..." --weight=1
|
||||
|
||||
ynh_add_config --template="../conf/default.conf" --destination="$install_dir/default.json"
|
||||
ynh_add_config --template="../conf/config.json" --destination="$install_dir/config.json"
|
||||
|
||||
chmod 650 "$install_dir/default.json"
|
||||
chown $app:$app "$install_dir/default.json"
|
||||
chmod 650 "$install_dir/config.json"
|
||||
chown $app:$app "$install_dir/config.json"
|
||||
|
||||
#=================================================
|
||||
# ADD A CONFIGURATION
|
||||
|
|
|
@ -22,7 +22,7 @@ upgrade_type=$(ynh_check_app_version_changed)
|
|||
#=================================================
|
||||
ynh_script_progression --message="Stopping a systemd service..." --weight=2
|
||||
|
||||
ynh_systemd_action --service_name=$app --action="stop" --log_path="/var/log/$app/$app.log"
|
||||
ynh_systemd_action --service_name=$app --action="stop" --log_path="systemd"
|
||||
|
||||
#=================================================
|
||||
# DOWNLOAD, CHECK AND UNPACK SOURCE
|
||||
|
@ -33,7 +33,7 @@ then
|
|||
ynh_script_progression --message="Upgrading source files..." --weight=5
|
||||
|
||||
# Download, check integrity, uncompress and patch the source from app.src
|
||||
ynh_setup_source --dest_dir="$install_dir" --keep="save/conf/default.json"
|
||||
ynh_setup_source --dest_dir="$install_dir" --keep="config.json"
|
||||
fi
|
||||
|
||||
chmod -R o-rwx "$install_dir"
|
||||
|
|
Loading…
Reference in a new issue