1
mirror of https://github.com/mpv-player/mpv synced 2024-10-26 07:22:17 +02:00
mpv/debian/postrm
diego 4a78ef25e1 Remove config files on purge.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@7215 b3059339-0415-0410-9bf9-f77b7e298cf2
2002-09-01 09:33:36 +00:00

10 lines
112 B
Bash

#!/bin/sh
set -e
if [ "$1" = "purge" ]; then
if [ -d /etc/mplayer/ ]; then
rm -rf /etc/mplayer/
fi
fi