X-Git-Url: https://code.delx.au/refind/blobdiff_plain/a685467b7efc9a27ea7cf0318d35577b80c63356..c234a62eb700ca3167345fc1be035fdcf19999b4:/debian/postinst diff --git a/debian/postinst b/debian/postinst index 898fde3..51a3b94 100755 --- a/debian/postinst +++ b/debian/postinst @@ -42,16 +42,12 @@ 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 - else - ./refind-install --yes - fi + ./refind-install --yes > /dev/null fi } # install_to_esp() @@ -94,3 +90,5 @@ case "$1" in exit 0 ;; esac + +#DEBHELPER#