aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMax <msuraev@sysmocom.de>2022-08-30 19:42:59 +0700
committerMax <msuraev@sysmocom.de>2022-08-30 19:42:59 +0700
commit77cdc424cb48122c4b909c073df8b61bc6be620c (patch)
treed0850cbee557f8a438e9a19947999efa4cab4f29
parentfb6cf3221ef4989441c09a650011e4a334c37d12 (diff)
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: I950d84853c6737276d02b3275127b499ae567c38
-rw-r--r--contrib/systemd/osmo-gtphub.service2
-rw-r--r--contrib/systemd/osmo-sgsn.service2
2 files changed, 4 insertions, 0 deletions
diff --git a/contrib/systemd/osmo-gtphub.service b/contrib/systemd/osmo-gtphub.service
index 488178584..1e8f1ae8c 100644
--- a/contrib/systemd/osmo-gtphub.service
+++ b/contrib/systemd/osmo-gtphub.service
@@ -4,6 +4,8 @@ Description=Osmocom GTP Hub
[Service]
Type=simple
ExecStart=/usr/bin/osmo-gtphub -c /etc/osmocom/osmo-gtphub.cfg
+StateDirectory=osmocom
+WorkingDirectory=%S/osmocom
Restart=always
RestartSec=2
RestartPreventExitStatus=1
diff --git a/contrib/systemd/osmo-sgsn.service b/contrib/systemd/osmo-sgsn.service
index 0991c70c6..30b3cda76 100644
--- a/contrib/systemd/osmo-sgsn.service
+++ b/contrib/systemd/osmo-sgsn.service
@@ -6,6 +6,8 @@ After=osmo-hnbgw.service
[Service]
Type=simple
+StateDirectory=osmocom
+WorkingDirectory=%S/osmocom
Restart=always
ExecStart=/usr/bin/osmo-sgsn -c /etc/osmocom/osmo-sgsn.cfg
RestartSec=2