From: Kyr Shatskyy Date: Thu, 14 Aug 2025 18:52:20 +0000 (+0200) Subject: bootstrap: add -q for rpm --whatprovides X-Git-Tag: 1.2.2~7^2~1 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=013e5b9ddce4f6fc3d94329fba4d9be20aa430e9;p=teuthology.git bootstrap: add -q for rpm --whatprovides The rpm -q option lost during refactoring which is obviously needed when requesting the package name. Fixes: c290c6851a7c10aaa4a5e18e1c14d750c338e339 Signed-off-by: Kyr Shatskyy --- diff --git a/bootstrap b/bootstrap index a4ae99c8c..54b09207b 100755 --- a/bootstrap +++ b/bootstrap @@ -37,7 +37,7 @@ Linux) OS=$(echo $NAME | tr -d ' ') fi # rpm/dnf is the default, to reduce repetition in the case statement - has_pkg="rpm --whatprovides" + has_pkg="rpm -q --whatprovides" install_pkg="sudo dnf install -y" case "$OS" in Ubuntu|Debian|LinuxMint)