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