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: I39c48167cbe74b599c8edc3659e787792cbcfdfd
This commit is contained in:
Max 2022-09-09 22:47:13 +07:00
parent bddebaecb2
commit 36061e0d37
2 changed files with 4 additions and 0 deletions

View File

@ -4,6 +4,8 @@ Description=PCAP Client for the PCAP aggregation
[Service]
Type=simple
Restart=always
StateDirectory=osmocom
WorkingDirectory=%S/osmocom
ExecStart=/usr/bin/osmo-pcap-client -c /etc/osmocom/osmo-pcap-client.cfg
RestartSec=2

View File

@ -4,6 +4,8 @@ Description=PCAP Server for the PCAP aggregation
[Service]
Type=simple
Restart=always
StateDirectory=osmocom
WorkingDirectory=%S/osmocom
ExecStart=/usr/bin/osmo-pcap-server -c /etc/osmocom/osmo-pcap-server.cfg
RestartSec=2