diff options
| author | Liu Yiding <liuyd.fnst@fujitsu.com> | 2025-09-25 09:28:56 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-09-24 19:22:56 -0700 |
| commit | 95dd373592518f127e751c1fb46e401a8e79dea9 (patch) | |
| tree | 8d1fba7167dc2c056bfc98f67981d9b9642dc144 /meta-networking/recipes-connectivity | |
| parent | fbcfd9a9f5407482e4a87ece40fa7c3e373d5172 (diff) | |
| download | meta-openembedded-95dd373592518f127e751c1fb46e401a8e79dea9.tar.gz | |
freeradius: Fix the multilib config
When enabling multilib with lib32, the radiusd will use etc file for lib32 as default
#systemctl status radiusd
......
/usr/sbin/radiusd -d /etc/lib32-raddb
It should be lib64 as default.
Signed-off-by: Liu Yiding <liuyd.fnst@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-networking/recipes-connectivity')
| -rw-r--r-- | meta-networking/recipes-connectivity/freeradius/freeradius_3.2.7.bb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/meta-networking/recipes-connectivity/freeradius/freeradius_3.2.7.bb b/meta-networking/recipes-connectivity/freeradius/freeradius_3.2.7.bb index 181d9e5d18..ef98d7285d 100644 --- a/meta-networking/recipes-connectivity/freeradius/freeradius_3.2.7.bb +++ b/meta-networking/recipes-connectivity/freeradius/freeradius_3.2.7.bb | |||
| @@ -210,12 +210,12 @@ pkg_postinst:${PN} () { | |||
| 210 | # for radiusd.service with multilib | 210 | # for radiusd.service with multilib |
| 211 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 211 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
| 212 | install -d ${sysconfdir}/sysconfig | 212 | install -d ${sysconfdir}/sysconfig |
| 213 | echo "MLPREFIX=${MLPREFIX}" > ${sysconfdir}/sysconfig/radiusd | 213 | echo "MLPREFIX=" > ${sysconfdir}/sysconfig/radiusd |
| 214 | fi | 214 | fi |
| 215 | else | 215 | else |
| 216 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then | 216 | if ${@bb.utils.contains('DISTRO_FEATURES', 'systemd', 'true', 'false', d)}; then |
| 217 | install -d $D${sysconfdir}/sysconfig | 217 | install -d $D${sysconfdir}/sysconfig |
| 218 | echo "MLPREFIX=${MLPREFIX}" > $D${sysconfdir}/sysconfig/radiusd | 218 | echo "MLPREFIX=" > $D${sysconfdir}/sysconfig/radiusd |
| 219 | fi | 219 | fi |
| 220 | fi | 220 | fi |
| 221 | } | 221 | } |
