X-Git-Url: https://git.grml.org/?a=blobdiff_plain;f=debian%2Fpostinst;h=c4dc5c29751fbb1e28da9880e72d296854ecfc37;hb=58e9e8583f84d9fe5bd2c35feb53a7b5ed3ec533;hp=585579a30bef5565e02dde4fec7c0cd48992030f;hpb=fe95fb2f99b2c35aec74130ad1040e8dbb728a70;p=grml-tips.git diff --git a/debian/postinst b/debian/postinst index 585579a..c4dc5c2 100755 --- a/debian/postinst +++ b/debian/postinst @@ -1,15 +1,17 @@ #!/bin/sh -e -if [ -x /usr/bin/grml-tips-tags ] +if [ -x /usr/lib/grml-tips/grml-tips-tags ] then echo -n "Generating grml-tips tag database: " - if grml-tips-tags + if /usr/lib/grml-tips/grml-tips-tags then echo "Ok" else - echo "Failed" + echo "Failed" >&2 + exit 1 fi fi - #DEBHELPER# - exit 0 +#DEBHELPER# + +exit 0