From 98e12254b680560c9af9175ea9dbd1476f347b9e Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Fri, 8 Sep 2023 23:21:58 +0300 Subject: [PATCH] fixup! Daemon: Replace gosu with su-exec. --- daemon/entrypoint | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/daemon/entrypoint b/daemon/entrypoint index bb26dcc..20a51b3 100755 --- a/daemon/entrypoint +++ b/daemon/entrypoint @@ -2,7 +2,7 @@ set -eux command -v stat > /dev/null || { echo "Can't find stat, exiting."; exit 1; } -command -v gosu > /dev/null || { echo "Can't find gosu, exiting."; exit 1; } +command -v su-exec > /dev/null || { echo "Can't find gosu, exiting."; exit 1; } ln -sf /etc/transmission/settings.json ./settings.json -- GitLab