From 5e5e35e0cc0cf0abe1fd4a8d0cee8d6541a7f81b Mon Sep 17 00:00:00 2001 From: Alexandru Avadanii Date: Sun, 4 Mar 2018 03:50:01 +0100 Subject: [jump req] Move pkg installation to lib.sh Change-Id: I687b73b256aca78c9d41d4bcd49bfbde51278b51 Signed-off-by: Alexandru Avadanii --- ci/deploy.sh | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'ci/deploy.sh') diff --git a/ci/deploy.sh b/ci/deploy.sh index 344a87fc8..e07aca57b 100755 --- a/ci/deploy.sh +++ b/ci/deploy.sh @@ -234,18 +234,7 @@ if [ ${USE_EXISTING_PKGS} -eq 1 ]; then notify "[NOTE] Skipping distro pkg installation" 2 else notify "[NOTE] Installing required distro pkgs" 2 - if [ -n "$(command -v apt-get)" ]; then - pkg_type='deb'; pkg_cmd='sudo apt-get install -y' - else - pkg_type='rpm'; pkg_cmd='sudo yum install -y --skip-broken' - fi - eval "$(parse_yaml "./requirements_${pkg_type}.yaml")" - for section in 'common' "$(uname -m)"; do - section_var="requirements_pkg_${section}[*]" - pkg_list+=" ${!section_var}" - done - # shellcheck disable=SC2086 - ${pkg_cmd} ${pkg_list} + jumpserver_pkg_install fi if ! virsh list >/dev/null 2>&1; then -- cgit 1.2.3-korg