Release new version 0.7.3
[grml-tips.git] / debian / postinst
1 #!/bin/sh -e
2
3 if [ -x /usr/lib/grml-tips/grml-tips-tags ]
4 then
5         echo -n "Generating grml-tips tag database: "
6         if /usr/lib/grml-tips/grml-tips-tags
7         then
8                 echo "Ok"
9         else
10                 echo "Failed" >&2
11                 exit 1
12         fi
13 fi
14
15 #DEBHELPER#
16
17 exit 0