]> code.delx.au - refind/blobdiff - debian/postinst
Version 0.10.1 release -- mostly documentation updates.
[refind] / debian / postinst
index 898fde3b0be04cd0b5d2a50ed2b9cb194effc4de..75031030c3a42d9187852ac0254fc0d77f0c887b 100755 (executable)
@@ -42,15 +42,15 @@ install_to_esp() {
     # their own local keys.
     if [[ $IsSecureBoot == "1" && -n $ShimFile ]] ; then
         if [[ -n $SBSign && -n $OpenSSL ]] ; then
-            ./refind-install --shim $ShimFile --localkeys --yes
+            ./refind-install --shim $ShimFile --localkeys --yes > /dev/null
         else
-            ./refind-install --shim $ShimFile --yes
+            ./refind-install --shim $ShimFile --yes > /dev/null
         fi
     else
         if [[ -n $SBSign && -n $OpenSSL ]] ; then
-            ./refind-install --localkeys --yes
+            ./refind-install --localkeys --yes > /dev/null
         else
-            ./refind-install --yes
+            ./refind-install --yes > /dev/null
         fi
     fi
 } # install_to_esp()
@@ -94,3 +94,5 @@ case "$1" in
         exit 0
     ;;
 esac
+
+#DEBHELPER#