From e2b8e9a41dc547c0bfd040bb301b4528fd11f918 Mon Sep 17 00:00:00 2001 From: liecno Date: Sat, 4 Jan 2025 12:09:57 +0100 Subject: [PATCH] Remove superfluous .service string vom systemctl calls in ps5-mqtt script --- ct/ps5-mqtt.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ct/ps5-mqtt.sh b/ct/ps5-mqtt.sh index 568d8a4d..5102cd8b 100644 --- a/ct/ps5-mqtt.sh +++ b/ct/ps5-mqtt.sh @@ -38,7 +38,7 @@ function update_script() { if [[ "${RELEASE}" != "$(cat /opt/ps5-mqtt_version.txt)" ]]; then msg_info "Stopping service" - systemctl stop ps5-mqtt.service + systemctl stop ps5-mqtt msg_ok "Stopped service" msg_info "Updating PS5-MQTT to ${RELEASE}" @@ -58,7 +58,7 @@ function update_script() { msg_ok "Built new PS5-MQTT version" msg_info "Starting service" - systemctl start ps5-mqtt.service + systemctl start ps5-mqtt msg_ok "Started service" else