diff options
| author | gael.portay+rtone@gmail.com <gael.portay+rtone@gmail.com> | 2024-10-25 10:22:31 +0200 |
|---|---|---|
| committer | Armin Kuster <akuster808@gmail.com> | 2024-11-24 20:19:50 -0500 |
| commit | 2e3d90f256b302f693dd7d37b014f1c5132265e6 (patch) | |
| tree | 9d278cbd2b364ed12138448d13616358f66aa10f /dynamic-layers/networking-layer | |
| parent | 9c1ee5ea3e97fae68e464063da3b10e81cf6cd9b (diff) | |
| download | meta-security-2e3d90f256b302f693dd7d37b014f1c5132265e6.tar.gz | |
sssd: fix missing python3-core run-time dependency
The internal tool sss_analyze is a python script run by the sssctl
command analyze.
The script sss_analyze is shipped by the package sssd since 2.6.0.
However, the package sssd lacks installing the python interpreter that
is required to run the script.
This adds the missing run-time dependency python3-core to ensure the
interpreter python3 comes along the package sssd.
Fixes:
root@qemux86-64:~# sssctl analyze
env: can't execute 'python3': No such file or directory
Command '/usr/libexec/sssd/sss_analyze' failed with [127]
Signed-off-by: Gaƫl PORTAY <gael.portay+rtone@gmail.com>
Signed-off-by: Armin Kuster <akuster808@gmail.com>
Diffstat (limited to 'dynamic-layers/networking-layer')
| -rw-r--r-- | dynamic-layers/networking-layer/recipes-security/sssd/sssd_2.9.2.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dynamic-layers/networking-layer/recipes-security/sssd/sssd_2.9.2.bb b/dynamic-layers/networking-layer/recipes-security/sssd/sssd_2.9.2.bb index fcf25bd..f6bbac3 100644 --- a/dynamic-layers/networking-layer/recipes-security/sssd/sssd_2.9.2.bb +++ b/dynamic-layers/networking-layer/recipes-security/sssd/sssd_2.9.2.bb | |||
| @@ -156,4 +156,4 @@ FILES:${PN} += "${base_libdir}/security/pam_sss*.so \ | |||
| 156 | 156 | ||
| 157 | FILES:libsss-sudo = "${libdir}/libsss_sudo.so" | 157 | FILES:libsss-sudo = "${libdir}/libsss_sudo.so" |
| 158 | 158 | ||
| 159 | RDEPENDS:${PN} = "bind bind-utils dbus libldb libpam libsss-sudo" | 159 | RDEPENDS:${PN} = "bind bind-utils dbus libldb libpam libsss-sudo python3-core" |
