summaryrefslogtreecommitdiff
path: root/debian/mysql-common.postrm
blob: 8b12d469b9d8fac84b28e1228dc6096e0c7a93d5 (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

set -e

if [ "$1" = "purge" ]; then
  rmdir /etc/mysql 2>/dev/null || true
fi

#DEBHELPER#