#!/bin/sh OPTS="" if [ -n "$D" ]; then OPTS="--root=$D" fi if type systemctl >/dev/null 2>/dev/null; then if [ -z "$D" ]; then systemctl stop avahi-daemon.service fi systemctl $OPTS disable avahi-daemon.service fi # Begin section update-rc.d if [ -z "$D" -a -x "/etc/init.d/avahi-daemon" ]; then /etc/init.d/avahi-daemon stop || : fi # End section update-rc.d