1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/zeronet_ynh.git synced 2024-09-03 17:46:12 +02:00

Fixed ynh_add_systemd_config

This commit is contained in:
anmol 2020-11-09 18:36:26 +05:30
parent f8885b3544
commit d3d02b8f2c
4 changed files with 4 additions and 4 deletions

View file

@ -5,7 +5,7 @@ After=network.target
[Service]
User=noreply
ExecStart=/usr/bin/python3 __FINALPATH__/zeronet.py --ui_port __PORT__ --ui_host __DOMAIN__ --fileserver_port __FS_PORT__ --data_dir __DATADIR__/data --log_dir __DATADIR__/log
WorkingDirectory=/var/www/ZeroNet-py3
WorkingDirectory=__FINALPATH__
ExecReload=/bin/kill -HUP $MAINPID
KillMode=process
Restart=on-failure

View file

@ -190,7 +190,7 @@ ynh_script_progression --message="Integrating service in YunoHost..."
### - Remove the section "REMOVE SERVICE INTEGRATION IN YUNOHOST" in the remove script
### - As well as the section "INTEGRATE SERVICE IN YUNOHOST" in the restore script
### - And the section "INTEGRATE SERVICE IN YUNOHOST" in the upgrade script
ynh_add_systemd_config --service="$app" --template="systemd.service" --others_var="$fs_port $datadir"
ynh_add_systemd_config --service="$app" --template="systemd.service" --others_var="fs_port datadir"
yunohost service add $app --description "$app service" --log "$datadir/log/debug-last.log" --needs_exposed_ports "$fs_port"

View file

@ -101,7 +101,7 @@ systemctl enable $app.service
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..."
ynh_add_systemd_config --service="$app" --template="systemd.service" --others_var="$fs_port $datadir"
ynh_add_systemd_config --service="$app" --template="systemd.service" --others_var="fs_port datadir"
yunohost service add $app --description "$app service" --log "$datadir/log/debug-last.log" --needs_exposed_ports "$fs_port"
#=================================================

View file

@ -140,7 +140,7 @@ chown -R $app: $datadir
# INTEGRATE SERVICE IN YUNOHOST
#=================================================
ynh_script_progression --message="Integrating service in YunoHost..."
ynh_add_systemd_config --service="$app" --template="systemd.service" --others_var="$fs_port $datadir"
ynh_add_systemd_config --service="$app" --template="systemd.service" --others_var="fs_port datadir"
yunohost service add $app --description "$app service" --log "$datadir/log/debug-last.log" --needs_exposed_ports "$fs_port"
#=================================================