mariadb/debian/mysql-common.postrm
2014-03-14 17:54:53 -04:00

7 lines
99 B
Bash

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