The make check test `run-tox-cephdam` reports error:
```
if errors:
> raise Error('\nERROR: '.join(errors))
E cephadmlib.exceptions.Error: lvcreate binary does not appear to be installed
cephadm.py:4434: Error
```
So let's installing lvm2 for make check cephadm test.
Fixes: https://tracker.ceph.com/issues/64122
Signed-off-by: luo rixin <luorixin@huawei.com>
if test -f ./install-deps.sh ; then
ci_debug "Running install-deps.sh"
- INSTALL_EXTRA_PACKAGES="ccache git $which_pkg clang"
+ INSTALL_EXTRA_PACKAGES="ccache git $which_pkg clang lvm2"
$DRY_RUN source ./install-deps.sh || return 1
trap clean_up_after_myself EXIT
fi