From d9eba4c7107919a8c723011b0e6c4a2f32079e8f Mon Sep 17 00:00:00 2001 From: Gilles Mouchet Date: Sun, 16 Jun 2024 18:36:17 +0200 Subject: [PATCH] add yum-update script --- inst-raps.sh | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/inst-raps.sh b/inst-raps.sh index c377163..a90833e 100755 --- a/inst-raps.sh +++ b/inst-raps.sh @@ -147,6 +147,14 @@ printInfo "Update date and time" if [ $? -ne 0 ]; then printError "Problem to update date and time";exit; fi printSuccess "Date and Time updated successfully" +#----------------------------------------------------------------------------- +# get yum-check-update script +#----------------------------------------------------------------------------- +printInfo "Get yum-check-update script" +git clone https://gitweb.dyndns.org/scripts/yum-check.git /tmp/ +if [ $? -ne 0 ]; then printError "Problem to clone yum-check-update script";exit; fi +printSuccess "yum-check-update script cloned successfully" + #----------------------------------------------------------------------------- # update role #-----------------------------------------------------------------------------