Browse code

Merge "Use -y on zypper remove to avoid hanging"

Jenkins authored on 2016/11/21 08:52:33
Showing 1 changed files
... ...
@@ -1318,7 +1318,7 @@ function uninstall_package {
1318 1318
     elif is_fedora; then
1319 1319
         sudo ${YUM:-yum} remove -y "$@" ||:
1320 1320
     elif is_suse; then
1321
-        sudo zypper rm "$@" ||:
1321
+        sudo zypper remove -y "$@" ||:
1322 1322
     else
1323 1323
         exit_distro_not_supported "uninstalling packages"
1324 1324
     fi