diff options
Diffstat (limited to 'xci/files')
-rw-r--r-- | xci/files/xci-lib.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xci/files/xci-lib.sh b/xci/files/xci-lib.sh index 9e751497..860153b9 100644 --- a/xci/files/xci-lib.sh +++ b/xci/files/xci-lib.sh @@ -135,7 +135,7 @@ function install_ansible() { [curl]=curl ) EXTRA_PKG_DEPS=( apt-utils ) - sudo apt-get update + sudo apt-get update -qq > /dev/null ;; rhel|fedora|centos) @@ -158,7 +158,7 @@ function install_ansible() { [wget]=wget [curl]=curl ) - sudo $PKG_MANAGER updateinfo + sudo $PKG_MANAGER updateinfo > /dev/null EXTRA_PKG_DEPS=( deltarpm ) ;; @@ -172,7 +172,7 @@ function install_ansible() { install_map+=(${EXTRA_PKG_DEPS[@]} ) - ${INSTALLER_CMD} ${install_map[@]} + ${INSTALLER_CMD} ${install_map[@]} > /dev/null # We need to prepare our virtualenv now virtualenv --quiet --no-site-packages ${XCI_VENV} |