X-Git-Url: https://code.delx.au/refind/blobdiff_plain/1c723f224b1bc771a4192a2679831c7a6d21c264..bfe73b5fa6321273b7cf86b02a3c2d114a167bc9:/debian/postinst diff --git a/debian/postinst b/debian/postinst index af54dbe..af73308 100755 --- a/debian/postinst +++ b/debian/postinst @@ -37,14 +37,14 @@ declare OpenSSL=`which openssl 2> /dev/null` # their own local keys. if [[ $IsSecureBoot == "1" && -n $ShimFile ]] ; then if [[ -n $SBSign && -n $OpenSSL ]] ; then - ./install.sh --shim $ShimFile --localkeys --yes + ./refind-install --shim $ShimFile --localkeys --yes else - ./install.sh --shim $ShimFile --yes + ./refind-install --shim $ShimFile --yes fi else if [[ -n $SBSign && -n $OpenSSL ]] ; then - ./install.sh --localkeys --yes + ./refind-install --localkeys --yes else - ./install.sh --yes + ./refind-install --yes fi fi