First commit
[jenirok] / debian / postinst
1 #!/bin/sh -e
2
3 gtk-update-icon-cache -f /usr/share/icons/hicolor
4
5 # Make jenirok autostart on boot if this is a new install
6 oldversion="$2"
7 if [ -z "$oldversion" ]; then
8   update-rc.d jenirokd defaults 99 >/dev/null
9 fi
10
11 /etc/init.d/jenirokd start
12
13 exit 0