blob: ea3661187763995e29fa02afa408e6e9f5947faa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#!/bin/sh
set -e
#DEBHELPER#
log() {
echo "$*"
}
remove_nss_automount_db () {
log "Checking NSS setup..."
# abort if /etc/nsswitch.conf does not exist
if ! [ -e "${DPKG_ROOT}/etc/nsswitch.conf" ]; then
log "Could not find ${DPKG_ROOT}/etc/nsswitch.conf."
return
fi
# Remove NSS databases: `automount` and `automounter` (legacy).
sed -i '/^automount/d' "${DPKG_ROOT}/etc/nsswitch.conf"
}
case "$1" in
remove|purge)
if [ "${DPKG_MAINTSCRIPT_PACKAGE_REFCOUNT:-1}" = 1 ]; then
remove_nss_automount_db
fi
;;
upgrade|failed-upgrade|abort-install|abort-upgrade|disappear)
;;
*)
echo "postrm called with unknown argument \`$1'" >&2
exit 1
;;
esac
|