From 17d9013883ba20fe94cd204f18d9890e4ed1e96d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?E=CC=81ric=20Gaspar?= <46165813+ericgaspar@users.noreply.github.com> Date: Wed, 1 Nov 2023 11:46:54 +0100 Subject: [PATCH] fix --- conf/rustdesksignal.service | 2 +- scripts/install | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/conf/rustdesksignal.service b/conf/rustdesksignal.service index 3457d80..c337afa 100644 --- a/conf/rustdesksignal.service +++ b/conf/rustdesksignal.service @@ -8,7 +8,7 @@ Group=__APP__ Restart=always LimitNOFILE=1000000 WorkingDirectory=__INSTALL_DIR__/ -ExecStart=__INSTALL_DIR__/hbbs -r __PUBLIC_IP4__ -p __PORT_HBBS__ +ExecStart=__INSTALL_DIR__/hbbs -r __IP__ -p __PORT_HBBS__ StandardOutput=append:/var/log/__APP__/hbbs.log StandardError=append:/var/log/__APP__/hbbs.error RestartSec=10 diff --git a/scripts/install b/scripts/install index b7abe21..c9a5d5e 100755 --- a/scripts/install +++ b/scripts/install @@ -29,6 +29,10 @@ chmod +x "$install_dir/hbbs" #================================================= ynh_script_progression --message="Adding system configurations related to $app..." --weight=1 +public_ip4="$(curl -s ip.yunohost.org)" || true + +ip=${public_ip4} + # Create a dedicated NGINX config using the conf/nginx.conf template ynh_add_nginx_config