Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bootstrap: Tolerate a missing lsb_release #1962

Merged
merged 3 commits into from
Jul 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions bootstrap
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,9 @@ Linux)
fi
fi
;;
"openSUSE project"|"SUSE LINUX"|"openSUSE")
deps=(python3-pip python3-devel python3 libev-devel libvirt-devel libffi-devel)
"openSUSE project"|"SUSE LINUX"|"openSUSE"|"openSUSELeap"|"openSUSETumbleweed")
PYTHON=python3.12
deps=(python312-pip python312-devel python312 libev-devel libvirt-devel libffi-devel)
for package in ${deps[@]}; do
if ! rpm -q --whatprovides $package; then
if [ "$(rpm -q --whatprovides $package)" == "no package provides $package" ]; then
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jmespath==1.0.1
# via
# boto3
# botocore
lupa==2.0
lupa==2.2
# via teuthology (pyproject.toml)
lxml==4.9.4
# via teuthology (pyproject.toml)
Expand Down
Loading