3c024db1353dec811f16f3f39218b328d2b870c4
[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 if [ -z "$2" ]; then
7   update-rc.d jenirokd defaults 99 >/dev/null
8 fi
9
10 /etc/init.d/jenirokd start
11
12 exit 0