mirror of
https://github.com/ceph/ceph
synced 2025-02-20 17:37:29 +00:00
Merge pull request #20434 from smithfarm/wip-22998
build/ops: install-deps.sh: pass --no-recommends to zypper Reviewed-by: Ricardo Dias <rdias@suse.com> Reviewed-by: Jan Fajerski <jfajerski@suse.com>
This commit is contained in:
commit
7d6e165bdd
@ -248,9 +248,10 @@ else
|
||||
;;
|
||||
opensuse|suse|sles)
|
||||
echo "Using zypper to install dependencies"
|
||||
$SUDO zypper --gpg-auto-import-keys --non-interactive install lsb-release systemd-rpm-macros
|
||||
zypp_install="zypper --gpg-auto-import-keys --non-interactive install --no-recommends"
|
||||
$SUDO $zypp_install lsb-release systemd-rpm-macros
|
||||
munge_ceph_spec_in $DIR/ceph.spec
|
||||
$SUDO zypper --non-interactive install $(rpmspec -q --buildrequires $DIR/ceph.spec) || exit 1
|
||||
$SUDO $zypp_install $(rpmspec -q --buildrequires $DIR/ceph.spec) || exit 1
|
||||
;;
|
||||
alpine)
|
||||
# for now we need the testing repo for leveldb
|
||||
|
Loading…
Reference in New Issue
Block a user