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.

Fixes: OS#5661
Change-Id: I0f942545d9e920ba8a2d8645512ec3414ab27418
This commit is contained in:
Max 2022-08-30 19:28:37 +07:00
parent 088043fae4
commit be768ac302
1 changed files with 2 additions and 0 deletions

View File

@ -8,6 +8,8 @@ After=osmo-hnbgw.service
[Service]
Type=simple
Restart=always
StateDirectory=osmocom
WorkingDirectory=%S/osmocom
ExecStart=/usr/bin/osmo-msc -c /etc/osmocom/osmo-msc.cfg
RestartSec=2