update yum with quiet flag

This commit is contained in:
ducoterra
2018-09-16 14:30:22 -04:00
parent 867ecf98b7
commit 04bd90dd8a

View File

@@ -50,7 +50,7 @@ if [ $install_epel_release = True ] ; then
fi
# install dependencies
yum -y install gcc wget nginx libsqlite3x-devel.x86_64 postgresql-server postgresql-devel postgresql-contrib bzip2-devel zlib-devel libffi-devel openssl-devel policycoreutils-python.x86_64 >> $yumlogloc
yum -y -q install gcc wget nginx libsqlite3x-devel.x86_64 postgresql-server postgresql-devel postgresql-contrib bzip2-devel zlib-devel libffi-devel openssl-devel policycoreutils-python.x86_64 >> $yumlogloc
if [ $? -ne 0 ] ; then
echo "yum failed to install a dependency. $yumlogmsg"
exit 1