Geneate tag db after installation
[grml-tips.git] / debian / postinst
1 #!/bin/sh -e
2
3 if [ -x /usr/bin/grml-tips-tags ]
4 then
5         echo -n "Generating grml-tips tag database: "
6         if grml-tips-tags
7         then
8                 echo "Ok"
9         else
10                 echo "Failed"
11         fi
12 fi
13
14  #DEBHELPER#
15  exit 0