mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2025-12-20 04:40:04 +01:00
Revert "fedora/REQUIRED_PACKAGES: speed up optional packages installation"
dnf --skip-unavailable not available on CentOS 9.
This reverts commit 5409d4f5cd.
This commit is contained in:
parent
054962aeea
commit
e2aa19a06c
1 changed files with 8 additions and 3 deletions
|
|
@ -25,6 +25,12 @@ install() {
|
|||
fi
|
||||
}
|
||||
|
||||
install_ignore_missing() {
|
||||
for p; do
|
||||
install "$p" || :
|
||||
done
|
||||
}
|
||||
|
||||
if test "$NM_NO_EXTRA" != 1; then
|
||||
# these packages are convenient for developing, but not necessary
|
||||
# for CI testing.
|
||||
|
|
@ -82,9 +88,8 @@ install \
|
|||
which \
|
||||
#end
|
||||
|
||||
# Some packages don't exist in certain distributions. Ignore errors
|
||||
# installing them, but still drag them in when available.
|
||||
install --skip-unavailable \
|
||||
# some packages don't exist in certain distributions. Install them one-by-one, and ignore errors.
|
||||
install_ignore_missing \
|
||||
black \
|
||||
dbus-python \
|
||||
dhclient \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue