mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-06-04 14:39:54 +00:00
postfix: split ${PN}-bin from ${PN} to solve recursive dependency
The commit 89d86b96f8 which tries to fix
the installation issue for ostree introduces a recursive dependency
issue. When installing the postfix package on target via online
repository, the postinst function for postfix-cfg package needs
newaliases but this command is from postfix package which causes an
error:
Configuring postfix-cfg.
/var/lib/opkg/info/postfix-cfg.postinst: line 9: newaliases: not found
pkg_run_script: package "postfix-cfg" postinst script returned status 127.
Split a new package postfix-bin from postfix and make it as the runtime
dependency for postfix-cfg.
Set USERADD_PACKAGES to ${PN}-bin to avoid image do_rootfs warnings when
installing postfix via IMAGE_INSTALL:
[log_check] warning: group postdrop does not exist - using root
[log_check] warning: user postfix does not exist - using root
Set ALTERNATIVE to ${PN}-bin to make sure the newaliases symbolic link
is installed before installing postfix-cfg.
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
@@ -20,16 +20,16 @@ CLEANBROKEN = "1"
|
||||
|
||||
BBCLASSEXTEND = "native"
|
||||
|
||||
inherit update-rc.d useradd update-alternatives systemd
|
||||
inherit update-rc.d useradd update-alternatives systemd lib_package
|
||||
|
||||
INITSCRIPT_NAME = "postfix"
|
||||
INITSCRIPT_PARAMS = "start 58 3 4 5 . stop 13 0 1 6 ."
|
||||
USERADD_PACKAGES = "${PN}"
|
||||
USERADD_PARAM_${PN} = \
|
||||
USERADD_PACKAGES = "${PN}-bin"
|
||||
USERADD_PARAM_${PN}-bin = \
|
||||
"-d /var/spool/postfix -r -g postfix --shell /bin/false postfix; \
|
||||
-d /var/spool/vmail -r -g vmail --shell /bin/false vmail \
|
||||
"
|
||||
GROUPADD_PARAM_${PN} = "--system postfix;--system postdrop;--system vmail"
|
||||
GROUPADD_PARAM_${PN}-bin = "--system postfix;--system postdrop;--system vmail"
|
||||
|
||||
export SYSLIBS = "${LDFLAGS}"
|
||||
|
||||
@@ -185,9 +185,9 @@ do_install_append_class-native() {
|
||||
ln -sf ../sbin/sendmail.postfix ${D}${bindir}/mailq
|
||||
}
|
||||
|
||||
ALTERNATIVE_${PN} = "sendmail mailq newaliases"
|
||||
ALTERNATIVE_${PN}-bin = "sendmail mailq newaliases"
|
||||
# /usr/lib/sendmial is required by LSB core test
|
||||
ALTERNATIVE_${PN}_linuxstdbase = "sendmail mailq newaliases usr-lib-sendmail"
|
||||
ALTERNATIVE_${PN}-bin_linuxstdbase = "sendmail mailq newaliases usr-lib-sendmail"
|
||||
ALTERNATIVE_TARGET[mailq] = "${bindir}/mailq"
|
||||
ALTERNATIVE_TARGET[newaliases] = "${bindir}/newaliases"
|
||||
ALTERNATIVE_TARGET[sendmail] = "${sbindir}/sendmail.postfix"
|
||||
@@ -212,9 +212,11 @@ pkg_postinst_ontarget_${PN}-cfg () {
|
||||
}
|
||||
|
||||
PACKAGES =+ "${PN}-cfg"
|
||||
RDEPENDS_${PN}-cfg_class-target += "${PN}-bin"
|
||||
RDEPENDS_${PN}_class-target += "${PN}-cfg"
|
||||
# Exclude .debug directories from the main package
|
||||
FILES_${PN} = "${localstatedir} ${bindir}/* ${sbindir}/* \
|
||||
FILES_${PN}-bin += "${localstatedir} ${bindir}/* ${sbindir}/* \
|
||||
${libexecdir}/* ${systemd_unitdir}/*"
|
||||
FILES_${PN}-cfg = "${sysconfdir}"
|
||||
FILES_${PN}-dbg += "${libexecdir}/postfix/.debug"
|
||||
ALLOW_EMPTY_${PN} = "1"
|
||||
|
||||
Reference in New Issue
Block a user