linuxOS_AP05/debian/base-linaro/binary/var/lib/dpkg/info/resolvconf.prerm
2025-09-26 09:40:02 +08:00

22 lines
333 B
Bash
Executable File

#!/bin/sh
set -e
case "$1" in
remove)
resolvconf --disable-updates || :
;;
# deconfigure)
# This code path should not be used.
# N.B.: Other packages should not declare "Breaks: resolvconf";
# they should declare "Conflicts: resolvconf" instead.
# ;;
# upgrade|failed-upgrade)
# Don't do anything
# ;;
esac
exit 0