Dovecot: set the runtime dir to /run instead of the deprecated /var/run

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@24131 af4574ff-66df-0310-9fd7-8a98e5e911e0
This commit is contained in:
Douglas R. Reno 2021-01-23 02:47:20 +00:00
parent ef25b31253
commit bbfaed79ee
2 changed files with 6 additions and 0 deletions

View File

@ -44,6 +44,10 @@
<listitem>
<para>January 22nd, 2021</para>
<itemizedlist>
<listitem>
<para>[renodr] - Adjust dovecot to use /run/dovecot for it's runtime
files instead of the deprecated /var/run.</para>
</listitem>
<listitem revision="systemd">
<para>[renodr] - Adjust the rpcbind socket to use /run instead of
the deprecated /var/run for the socket location.</para>

View File

@ -139,6 +139,7 @@ LDFLAGS+=" -ltirpc" \
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--rundir=/run \
--docdir=/usr/share/doc/dovecot-&dovecot-version; \
--disable-static &amp;&amp;
make</userinput></screen>
@ -148,6 +149,7 @@ LDFLAGS+=" -ltirpc" \
./configure --prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--rundir=/run \
--docdir=/usr/share/doc/dovecot-&dovecot-version; \
--disable-static \
--with-systemdsystemunitdir=/lib/systemd/system &amp;&amp;