ebtables: Add symbol link /sbin/ebtables

The original /sbin/ebtables has been moved to /usr/sbin/ebtables-legacy.
But the old path is still used by some other software libvirt.

libvirtd[809]: direct firewall backend requested,
but /sbin/ebtables is not available: No such file or directory

As stated in the related change in ebtable git repo:
The new -legacy binary has no problem if called via a symlink with the
'ebtables' name, so users can still name this binary with whatever name.

So we add a symbol link from /usr/sbin/ebtables-legacy to /sbin/ebtables.

Signed-off-by: He Zhe <zhe.he@windriver.com>
Signed-off-by: Yi Zhao <yi.zhao@windriver.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
He Zhe
2021-01-03 12:52:42 +08:00
committed by Khem Raj
parent 752bb30c39
commit 00958a182e
@@ -38,6 +38,9 @@ do_install_append () {
sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/ebtables.service sed -i -e 's#@SBINDIR@#${sbindir}#g' ${D}${systemd_unitdir}/system/ebtables.service
install -m 0755 ${WORKDIR}/ebtables.common ${D}${sbindir}/ebtables.common install -m 0755 ${WORKDIR}/ebtables.common ${D}${sbindir}/ebtables.common
fi fi
install -d ${D}${base_sbindir}
ln -sf ${sbindir}/ebtables-legacy ${D}${base_sbindir}/ebtables
} }
do_configure_prepend () { do_configure_prepend () {