From 992b89c53827a3c1db54afa7ff6597173ebfa97b Mon Sep 17 00:00:00 2001 From: 1activegeek Date: Thu, 22 Aug 2024 16:55:24 -0400 Subject: [PATCH] fix dirs in run --- root/etc/s6-overlay/s6-rc.d/svc-aircast/run | 4 ++-- root/etc/s6-overlay/s6-rc.d/svc-airupnp/run | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/root/etc/s6-overlay/s6-rc.d/svc-aircast/run b/root/etc/s6-overlay/s6-rc.d/svc-aircast/run index 6400e48..ac3158a 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-aircast/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-aircast/run @@ -3,11 +3,11 @@ # Check for VAR - default, kill, custom if [ -z "$AIRCAST_VAR" ]; then echo "No AIRCAST_VAR present, continuing with standard aircast launch variables" - exec /bin/aircast-linux-x86_64 + exec /usr/bin/aircast-linux-x86_64 elif [ "$AIRCAST_VAR" = "kill" ]; then echo "AIRCAST_VAR set to kill, skipping aircast service launch" exit 0 else echo "AIRCAST_VAR present, using custom user aircast launch variables" - exec /bin/aircast-linux-x86_64 $AIRCAST_VAR + exec /usr/bin/aircast-linux-x86_64 $AIRCAST_VAR fi \ No newline at end of file diff --git a/root/etc/s6-overlay/s6-rc.d/svc-airupnp/run b/root/etc/s6-overlay/s6-rc.d/svc-airupnp/run index 74fb5db..96c7799 100755 --- a/root/etc/s6-overlay/s6-rc.d/svc-airupnp/run +++ b/root/etc/s6-overlay/s6-rc.d/svc-airupnp/run @@ -3,11 +3,11 @@ # Check for VAR - default, kill, custom if [ -z "$AIRUPNP_VAR" ]; then echo "No AIRUPNP_VAR present, continuing with standard airupnp launch variables" - exec /bin/airupnp-linux-x86_64 -l 1000:2000 + exec /usr/bin/airupnp-linux-x86_64 -l 1000:2000 elif [ "$AIRUPNP_VAR" = "kill" ]; then echo "AIRUPNP_VAR set to kill, skipping airupnp service launch" exit 0 else echo "AIRUPNP_VAR present, using custom user airupnp launch variables" - exec /bin/airupnp-linux-x86_64 $AIRUPNP_VAR + exec /usr/bin/airupnp-linux-x86_64 $AIRUPNP_VAR fi \ No newline at end of file