From e9e4e6a56e10aac4e605779112332bbedecfb2a9 Mon Sep 17 00:00:00 2001 From: Jephte Clain Date: Fri, 10 Feb 2017 11:01:03 +0400 Subject: [PATCH] correction mineure avec les options de yum --- lib/ulib/redhat | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/ulib/redhat b/lib/ulib/redhat index 69d18cc..2e38f61 100644 --- a/lib/ulib/redhat +++ b/lib/ulib/redhat @@ -26,7 +26,7 @@ function pkg_update() { function pkg_upgrade() { # Mettre à jour la liste des packages silencieusement sans confirmation - LANG=C yum update -qy + LANG=C yum update -q -y } function pkg_install() { @@ -36,7 +36,7 @@ function pkg_install() { #elif check_sysinfos -v rhel4 centos4 redhat4 -b 32; then # LANG=C up2date --channel=rhel-i386-es-4 "${pkgs[@]}" else - LANG=C yum install -qy "$@" + LANG=C yum install -q -y "$@" fi }