diff options
author | Jenkins <jenkins@review.openstack.org> | 2016-02-10 22:49:02 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2016-02-10 22:49:02 +0000 |
commit | 3009d952f02df0772d340cde3a719a46c2943087 (patch) | |
tree | f55eaf8e51388c937cf29144b0e63388aa56f97e | |
parent | 66493bc76ccb5d859cbf23fd348a83c1ff0042d7 (diff) | |
parent | d85b12dcb87dd3dc7b9b349ec4aa0ad0c096a18a (diff) |
Merge "Pass -q option to yum"
-rwxr-xr-x | extraconfig/tasks/yum_update.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/extraconfig/tasks/yum_update.sh b/extraconfig/tasks/yum_update.sh index 39179024..869b1a42 100755 --- a/extraconfig/tasks/yum_update.sh +++ b/extraconfig/tasks/yum_update.sh @@ -151,14 +151,14 @@ openstack-nova-scheduler" kill $(ps ax | grep -e "radvd.*\.pid\.radvd" | awk '{print $1}') 2>/dev/null || : else echo "Upgrading openstack-puppet-modules" - yum -y update openstack-puppet-modules + yum -q -y update openstack-puppet-modules echo "Upgrading other packages is handled by config management tooling" echo -n "true" > $heat_outputs_path.update_managed_packages exit 0 fi command=${command:-update} -full_command="yum -y $command $command_arguments" +full_command="yum -q -y $command $command_arguments" echo "Running: $full_command" result=$($full_command) |