From 2cbba485b3d72b3897f79af6f4ff804152fe3417 Mon Sep 17 00:00:00 2001 From: Zelnes Date: Thu, 19 Mar 2026 23:46:55 +0100 Subject: [PATCH] fix: remove extra backslash to match single quoted here-doc (#13108) --- install/prometheus-install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/prometheus-install.sh b/install/prometheus-install.sh index 0cbcbea07..4893e6dc3 100644 --- a/install/prometheus-install.sh +++ b/install/prometheus-install.sh @@ -36,7 +36,7 @@ ExecStart=/usr/local/bin/prometheus \ --config.file=/etc/prometheus/prometheus.yml \ --storage.tsdb.path=/var/lib/prometheus/ \ --web.listen-address=0.0.0.0:9090 -ExecReload=/bin/kill -HUP \$MAINPID +ExecReload=/bin/kill -HUP $MAINPID [Install] WantedBy=multi-user.target