mariadb/debian/mysql-common.postrm

8 lines
99 B
Text
Raw Normal View History

#!/bin/bash -e
if [ "$1" = "purge" ]; then
rmdir /etc/mysql 2>/dev/null || true
fi
#DEBHELPER#