Fixed an error in settings dialog that caused app to segfault on arm. Changed init...
[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