package/exim: fix systemd service binary path
authorPascal de Bruijn <p.debruijn@unilogic.nl>
Fri, 28 Feb 2020 08:25:39 +0000 (09:25 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Sat, 29 Feb 2020 16:47:47 +0000 (17:47 +0100)
modern versions of exim are installed into sbin not bin

Signed-off-by: Pascal de Bruijn <p.debruijn@unilogic.nl>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/exim/exim.service

index 26daabc4c06488cf3934ab75c2230715cc8943d5..fe97727ab51552ec0cab330ab44c6eb64af7327b 100644 (file)
@@ -3,7 +3,7 @@ Description=Exim MTA
 After=syslog.target network.target
 
 [Service]
-ExecStart=/usr/bin/exim -bdf
+ExecStart=/usr/sbin/exim -bdf
 Restart=always
 
 [Install]