diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2002-05-17 00:16:56 +0800 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2002-05-17 00:16:56 +0800 |
commit | a1f40fcbc9a3d5d7458766ed6f30e3751c33c277 (patch) | |
tree | 50d18e61edac1135b01633afa278f739c1519b12 /mail | |
parent | 315836f94d612d803c586fbc4218c4a191823c2d (diff) | |
download | freebsd-ports-graphics-a1f40fcbc9a3d5d7458766ed6f30e3751c33c277.tar.gz freebsd-ports-graphics-a1f40fcbc9a3d5d7458766ed6f30e3751c33c277.tar.zst freebsd-ports-graphics-a1f40fcbc9a3d5d7458766ed6f30e3751c33c277.zip |
Exim4 uses a different strategy for pidfile creation and naming, in
which %s isn't a required component of the pidfile pathname. Also,
I was using /var/lock instead of /var/run, so kill two birds with
one stone, using /var/run/exim.pid.
PR: ports/37947
Submitted by: AMAKAWA Shuhei <sa264@cam.ac.uk>
Diffstat (limited to 'mail')
-rw-r--r-- | mail/exim-devel/files/patch-src::EDITME | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/exim-devel/files/patch-src::EDITME b/mail/exim-devel/files/patch-src::EDITME index 498bae6cfb8..0ed96f15c98 100644 --- a/mail/exim-devel/files/patch-src::EDITME +++ b/mail/exim-devel/files/patch-src::EDITME @@ -97,7 +97,7 @@ # file can be specified here. Some installations may want something like this: -# PID_FILE_PATH=/var/lock/exim.pid -+PID_FILE_PATH=/var/lock/exim%s.pid ++PID_FILE_PATH=/var/run/exim.pid # If PID_FILE_PATH is not defined, Exim writes a file in its spool directory # using the name "exim-daemon.pid". |