mirror of
https://github.com/pi-hole/dnsmasq.git
synced 2025-12-19 10:18:25 +00:00
23 lines
455 B
Bash
23 lines
455 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
if [ -x /etc/init.d/dnsmasq ]; then
|
|
update-rc.d dnsmasq defaults 15 85 >/dev/null
|
|
|
|
if [ "$1" = "configure" ] || [ "$1" = "abort-upgrade" ]; then
|
|
if [ -e /var/run/dnsmasq/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
|
|
fi
|
|
|
|
|