[Buildroot] [git commit branch/2019.02.x] package/exim: fix systemd service binary path

Peter Korsgaard peter at korsgaard.com
Sat Mar 14 17:44:44 UTC 2020


commit: https://git.buildroot.net/buildroot/commit/?id=75927f8e1d3686ba6b1aed882a79fb4c3ac8d7d0
branch: https://git.buildroot.net/buildroot/commit/?id=refs/heads/2019.02.x

modern versions of exim are installed into sbin not bin

Signed-off-by: Pascal de Bruijn <p.debruijn at unilogic.nl>
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
(cherry picked from commit 891c5b7b4bbfa5c9fba84580f26c0abe2d7072c9)
Signed-off-by: Peter Korsgaard <peter at korsgaard.com>
---
 package/exim/exim.service | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/package/exim/exim.service b/package/exim/exim.service
index 26daabc4c0..fe97727ab5 100644
--- a/package/exim/exim.service
+++ b/package/exim/exim.service
@@ -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]


More information about the buildroot mailing list