MediaManager: remove quotes from var in service file

This commit is contained in:
vhsdream 2025-08-24 10:33:39 -04:00
parent 6465201cd1
commit 5f96851a5d

View File

@ -11,13 +11,14 @@ verb_ip6
catch_errors
setting_up_container
network_check
update_os
read -r -p "Enter the email address of your first admin user: " admin_email
if [[ "$admin_email" ]]; then
EMAIL="$admin_email"
fi
update_os
msg_info "Installing dependencies"
$STD apt-get install -y yq
msg_ok "Installed dependencies"
@ -104,7 +105,7 @@ After=network.target
[Service]
Type=simple
WorkingDirectory="$MM_DIR"
WorkingDirectory=${MM_DIR}
ExecStart=/usr/bin/bash start.sh
[Install]