#!/bin/sh
set -e

# earlier versions used different priorities so remove
# all the symlinks here to ensure we get only the correct ones on upgrade.
update-rc.d -f dnsmasq remove >/dev/null 2>&1

update-rc.d dnsmasq defaults 53 85 >/dev/null

if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
  if [ -e /var/run/dnsmasq.pid ]; then
      ACTION=restart
  else
      ACTION=start
  fi

  if [ -x /usr/sbin/invoke-rc.d ] ; then
    invoke-rc.d dnsmasq $ACTION || true
  else
    /etc/init.d/dnsmasq $ACTION || true
  fi

fi
