summaryrefslogtreecommitdiff
path: root/debian/mariadb-common.postrm
blob: 027592f816e591ed4aeae5ac4fc108d474434cb7 (plain)
1
2
3
4
5
6
7
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#