mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
By default, exim stores its PID file in /var/spool/exim, and its log
file in /var/spool/exim/log, but it makes a lot more sense to have the
logs in /var/log/exim and the PID file in /var/run/exim.
Using binary name subdirectory in both cases allows for the use of
systemd's LogsDirectory and RuntimeDirectory statements
Signed-off-by: Pascal de Bruijn <p.debruijn@unilogic.nl>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
(cherry picked from commit 754341460b)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
15 lines
219 B
Desktop File
15 lines
219 B
Desktop File
[Unit]
|
|
Description=Exim MTA
|
|
After=syslog.target network.target
|
|
|
|
[Service]
|
|
User=exim
|
|
Group=mail
|
|
LogsDirectory=exim
|
|
RuntimeDirectory=exim
|
|
ExecStart=/usr/sbin/exim -bdf
|
|
Restart=always
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|