linuxOS_AP05/debian/base-linaro/binary/var/lib/dpkg/info/sysv-rc.postrm

25 lines
240 B
Plaintext
Raw Normal View History

2025-09-26 01:40:02 +00:00
#! /bin/sh
#
# sysv-rc postrm
#
set -e
case "$1" in
remove) : ;;
purge)
if [ -e /usr/share/debconf/confmodule ]; then
. /usr/share/debconf/confmodule
db_purge
fi
exit 0
;;
*) exit 0 ;;
esac
umask 022
exit 0