mirror of
https://salsa.debian.org/freeipa-team/freeipa.git
synced 2024-12-24 08:00:02 -06:00
21 lines
393 B
Bash
21 lines
393 B
Bash
|
#!/bin/bash -eu
|
||
|
|
||
|
function install_debuginfo() {
|
||
|
dnf makecache ||:
|
||
|
dnf install -y \
|
||
|
${IPA_TESTS_REPO_PATH}/dist/rpms_debuginfo/*.rpm \
|
||
|
gdb
|
||
|
|
||
|
dnf debuginfo-install -y \
|
||
|
389-ds-base \
|
||
|
bind \
|
||
|
bind-dyndb-ldap \
|
||
|
certmonger \
|
||
|
gssproxy \
|
||
|
httpd \
|
||
|
krb5-server \
|
||
|
krb5-workstation \
|
||
|
samba \
|
||
|
sssd
|
||
|
}
|