mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-01-04 16:10:10 +00:00
cyrus-sasl: add systemd supported for saslauthd
Signed-off-by: Bian Naimeng <biannm@cn.fujitsu.com> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com> Signed-off-by: Joe MacDonald <joe_macdonald@mentor.com>
This commit is contained in:
parent
7b3d4803b4
commit
b740f2712f
|
|
@ -0,0 +1,11 @@
|
|||
# Directory in which to place saslauthd's listening socket, pid file, and so
|
||||
# on. This directory must already exist.
|
||||
SOCKETDIR=@LOCALSTATEDIR@/run/saslauthd
|
||||
|
||||
# Mechanism to use when checking passwords. Run "saslauthd -v" to get a list
|
||||
# of which mechanism your installation was compiled with the ablity to use.
|
||||
MECH=pam
|
||||
|
||||
# Additional flags to pass to saslauthd on the command line. See saslauthd(8)
|
||||
# for the list of accepted flags.
|
||||
FLAGS=
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
[Unit]
|
||||
Description=SASL authentication daemon.
|
||||
After=syslog.target
|
||||
|
||||
[Service]
|
||||
Type=forking
|
||||
PIDFile=@LOCALSTATEDIR@/run/saslauthd/saslauthd.pid
|
||||
EnvironmentFile=@SYSCONFDIR@/default/saslauthd
|
||||
ExecStart=@SBINDIR@/saslauthd -m $SOCKETDIR -a $MECH $FLAGS
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
|
|
@ -10,9 +10,11 @@ SRC_URI = "ftp://ftp.cyrusimap.org/cyrus-sasl/cyrus-sasl-${PV}.tar.gz \
|
|||
file://debian_patches_0009_sasldb_al.diff \
|
||||
file://debian_patches_0014_avoid_pic_overwrite.diff \
|
||||
file://sasl.h-include-stddef.h-for-size_t-on-NetBSD.patch \
|
||||
file://saslauthd.service \
|
||||
file://saslauthd.conf \
|
||||
"
|
||||
|
||||
inherit autotools-brokensep pkgconfig useradd
|
||||
inherit autotools-brokensep pkgconfig useradd systemd
|
||||
|
||||
EXTRA_OECONF += "--with-dblib=berkeley \
|
||||
--with-bdb-libdir=${STAGING_LIBDIR} \
|
||||
|
|
@ -51,17 +53,42 @@ do_compile_prepend () {
|
|||
cd ..
|
||||
}
|
||||
|
||||
do_install_append() {
|
||||
if ${@base_contains('DISTRO_FEATURES','systemd','true','false',d)}; then
|
||||
install -d ${D}${systemd_unitdir}/system
|
||||
install -m 0644 ${WORKDIR}/saslauthd.service ${D}${systemd_unitdir}/system
|
||||
|
||||
sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/saslauthd.service
|
||||
sed -i -e 's#@LOCALSTATEDIR@#${localstatedir}#g' ${D}${systemd_unitdir}/system/saslauthd.service
|
||||
sed -i -e 's#@SYSCONFDIR@#${sysconfdir}#g' ${D}${systemd_unitdir}/system/saslauthd.service
|
||||
|
||||
install -d ${D}${sysconfdir}/tmpfiles.d
|
||||
echo "d /run/saslauthd/ - - - -" > ${D}${sysconfdir}/tmpfiles.d/saslauthd.conf
|
||||
|
||||
install -d ${D}${sysconfdir}/default/
|
||||
install -m 0644 ${WORKDIR}/saslauthd.conf ${D}${sysconfdir}/default/saslauthd
|
||||
sed -i -e 's#@LOCALSTATEDIR@#${localstatedir}#g' ${D}${sysconfdir}/default/saslauthd
|
||||
fi
|
||||
}
|
||||
|
||||
USERADD_PACKAGES = "${PN}-bin"
|
||||
GROUPADD_PARAM_${PN}-bin = "--system mail"
|
||||
USERADD_PARAM_${PN}-bin = "--system --home=/var/spool/mail -g mail cyrus"
|
||||
|
||||
SYSTEMD_PACKAGES = "${PN}"
|
||||
SYSTEMD_SERVICE_${PN} = "saslauthd.service"
|
||||
SYSTEMD_AUTO_ENABLE = "disable"
|
||||
|
||||
SRC_URI[md5sum] = "a7f4e5e559a0e37b3ffc438c9456e425"
|
||||
SRC_URI[sha256sum] = "8fbc5136512b59bb793657f36fadda6359cae3b08f01fd16b3d406f1345b7bc3"
|
||||
|
||||
PACKAGES =+ "${PN}-bin"
|
||||
|
||||
FILES_${PN} += "${libdir}/sasl2/*.so*"
|
||||
FILES_${PN}-bin += "${bindir}"
|
||||
FILES_${PN}-bin += "${bindir} \
|
||||
${sysconfdir}/default/saslauthd \
|
||||
${systemd_unitdir}/system/saslauthd.service \
|
||||
${sysconfdir}/tmpfiles.d/saslauthd.conf"
|
||||
FILES_${PN}-dev += "${libdir}/sasl2/*.la"
|
||||
FILES_${PN}-dbg += "${libdir}/sasl2/.debug"
|
||||
FILES_${PN}-staticdev += "${libdir}/sasl2/*.a"
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user