From 1f328653f9726f828ec2bfb34dee318e44b123c6 Mon Sep 17 00:00:00 2001 From: Cory Sanin Date: Wed, 30 Apr 2025 21:41:24 -0500 Subject: [PATCH] make the service the owner of that directory --- install.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/install.sh b/install.sh index c5d5bd8..c7cf118 100755 --- a/install.sh +++ b/install.sh @@ -8,6 +8,7 @@ mkdir -p /opt/dinnerbell/ && \ chmod +x /opt/dinnerbell/dinnerbell.py && \ ln -sf /opt/dinnerbell/dinnerbell.py /usr/bin/dinnerbell && \ mkdir -p /etc/dinnerbell/audio/ && \ +chown dinnerbell:dinnerbell /etc/dinnerbell/ && \ chmod 777 /etc/dinnerbell/audio/ && \ /usr/bin/cp "$SCRIPT_DIR"/dinnerbell.service /etc/systemd/system/dinnerbell.service && \ systemctl daemon-reload && \