Skip to content

Commit

Permalink
Merge pull request #36 from riddhi-ibm/fix-yum-installation-non-inter…
Browse files Browse the repository at this point in the history
…active

fix non-interactive installation issue
  • Loading branch information
riddhi-ibm authored Nov 8, 2024
2 parents 6a3d0de + b2f926d commit acdfb7c
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 acdfb7c

Please sign in to comment.