mirror of
https://git.dpkg.org/git/dpkg/dlocate.git
synced 2025-04-10 15:29:35 +00:00
Unify indentation, white spaces and line breaks with overall dpkg coding style. Changelog: internal
13 lines
138 B
Bash
13 lines
138 B
Bash
#!/bin/sh
|
|
# See deb-postrm(5).
|
|
|
|
set -e
|
|
|
|
if [ "$1" = "purge" ]; then
|
|
rm -f /var/lib/dlocate/*
|
|
rmdir /var/lib/dlocate/
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|