diff options
Diffstat (limited to 'debian/mariadb-common.postrm')
-rw-r--r-- | debian/mariadb-common.postrm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/debian/mariadb-common.postrm b/debian/mariadb-common.postrm new file mode 100644 index 00000000000..027592f816e --- /dev/null +++ b/debian/mariadb-common.postrm @@ -0,0 +1,8 @@ +#!/bin/bash -e + +if [ "$1" = "purge" ]; then + rmdir /etc/mysql/conf.d 2>/dev/null || true + rmdir /etc/mysql 2>/dev/null || true +fi + +#DEBHELPER# |