Skip to content

Commit

Permalink
Merge pull request #1962 from kshtsk/wip-opensuse-ce77b04
Browse files Browse the repository at this point in the history
bootstrap: Tolerate a missing lsb_release
  • Loading branch information
zmc authored Jul 1, 2024
2 parents 46f457e + 9fcf3c3 commit f68190e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
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

0 comments on commit f68190e

Please sign in to comment.