From 71fc3224314dad9aa5d4c204c199e75f715f0801 Mon Sep 17 00:00:00 2001 From: Max Date: Fri, 9 Sep 2022 18:38:04 +0700 Subject: [PATCH] Set working directory in systemd service file By default systemd will execute service with root directory (or home directory for user instance) which might result in attempts to create files in unexpected place. Let's set it to 'osmocom' subdir of state directory (/var/lib for system instance) instead. Related: OS#4821 Change-Id: If21e3471ec129892ff8b410db30d8ce0e4014e05 --- contrib/systemd/osmo-stp.service | 2 ++ 1 file changed, 2 insertions(+) diff --git a/contrib/systemd/osmo-stp.service b/contrib/systemd/osmo-stp.service index 87b414b6..79394fab 100644 --- a/contrib/systemd/osmo-stp.service +++ b/contrib/systemd/osmo-stp.service @@ -5,6 +5,8 @@ Documentation=https://osmocom.org/projects/osmo-stp/wiki [Service] Type=simple Restart=always +StateDirectory=osmocom +WorkingDirectory=%S/osmocom ExecStart=/usr/bin/osmo-stp -c /etc/osmocom/osmo-stp.cfg RestartSec=2