From b2f926d039cb6e48de39feeb88094b9f6e9faaf0 Mon Sep 17 00:00:00 2001 From: riddhi-nahata-ibm Date: Thu, 24 Oct 2024 16:40:12 +0530 Subject: [PATCH] fix non-interactive installation issue Signed-off-by: riddhi-nahata-ibm --- mount-helper/install/install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mount-helper/install/install.sh b/mount-helper/install/install.sh index 30b377b..32cc7ee 100755 --- a/mount-helper/install/install.sh +++ b/mount-helper/install/install.sh @@ -261,7 +261,7 @@ _install_app() { # Install the package with specific conditions for mount.ibmshare* packages if [[ $PACKAGE_NAME == mount.ibmshare* ]]; then if [ "$LINUX_INSTALL_APP" == "$YUM" ]; then - eval "yum install $PACKAGE_NAME --nogpgcheck" + eval "yum install -y $PACKAGE_NAME --nogpgcheck" elif [ "$LINUX_INSTALL_APP" == "$APT" ]; then eval "apt-get --allow-unauthenticated install $PACKAGE_NAME" elif [ "$LINUX_INSTALL_APP" == "$ZYP" ]; then