#!/bin/sh set -e NAME=autox if [ -x /etc/init.d/$NAME ]; then update-rc.d $NAME defaults 30 01 if [ "$1" = "configure" ] && [ -z "$2" ]; then invoke-rc.d $NAME start || true fi fi #DEBHELPER# exit 0