Skip to content

Commit

Permalink
fix non-interactive installation issue
Browse files Browse the repository at this point in the history
Signed-off-by: riddhi-nahata-ibm <[email protected]>
  • Loading branch information
riddhi-ibm committed Oct 24, 2024
1 parent 6a3d0de commit b2f926d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mount-helper/install/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b2f926d

Please sign in to comment.