mirror of
https://github.com/coreos/fedora-coreos-config.git
synced 2026-02-05 09:45:30 +01:00
21 lines
464 B
Bash
Executable File
21 lines
464 B
Bash
Executable File
#!/bin/bash
|
|
## kola:
|
|
## exclusive: false
|
|
## description: Make sure python is only pulled in by nfs-utils
|
|
## distros: fcos
|
|
|
|
set -xeuo pipefail
|
|
|
|
# shellcheck disable=SC1091
|
|
. "$KOLA_EXT_DATA/commonlib.sh"
|
|
|
|
if vereq "$(get_fedora_ver)" 43; then
|
|
sudo rpm-ostree usroverlay
|
|
sudo rpm -e nfs-utils nfs-utils-coreos python3 python3-libs python-pip-wheel
|
|
ok "no extra pytyhon3 dependencies"
|
|
else
|
|
ok "Skipping python3 dependencies test"
|
|
exit 0
|
|
fi
|
|
|