1
0
mirror of https://git.dpkg.org/git/dpkg/dlocate.git synced 2025-04-10 15:29:35 +00:00
Files
dlocate/debian/dlocate.postrm
Guillem Jover fb5ccb8f5a Fix coding style
Unify indentation, white spaces and line breaks with overall dpkg coding
style.

Changelog: internal
2024-11-22 10:40:56 +01:00

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#