summaryrefslogtreecommitdiffstats
path: root/helper/fileutil.inc
diff options
context:
space:
mode:
authorroot2013-03-19 15:28:29 +0100
committerroot2013-03-19 15:28:29 +0100
commitb7b49f374e15cc9081598becbe947eab5c8fa790 (patch)
tree4b97bccb0768b9228cac4a4c9ed700570575b6e4 /helper/fileutil.inc
parentGeneralization: (diff)
downloadtm-scripts-b7b49f374e15cc9081598becbe947eab5c8fa790.tar.gz
tm-scripts-b7b49f374e15cc9081598becbe947eab5c8fa790.tar.xz
tm-scripts-b7b49f374e15cc9081598becbe947eab5c8fa790.zip
openSUSE non-interactive zypper
Diffstat (limited to 'helper/fileutil.inc')
-rw-r--r--helper/fileutil.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/helper/fileutil.inc b/helper/fileutil.inc
index e3a79b4a..63173258 100644
--- a/helper/fileutil.inc
+++ b/helper/fileutil.inc
@@ -58,7 +58,7 @@ install_dependencies() {
if [ "$PACKET_MANAGER" = "apt" ]; then
apt-get install -y $REQUIRED_DEPENDENCIES || perror "Could not apt-get install $REQUIRED_DEPENDENCIES"
elif [ "$PACKET_MANAGER" = "zypper" ]; then
- zypper install -y $REQUIRED_DEPENDENCIES || perror "Could not zypper install $REQUIRED_DEPENDENCIES"
+ zypper install -n $REQUIRED_DEPENDENCIES || perror "Could not zypper install $REQUIRED_DEPENDENCIES"
fi
}