diff options
author | unknown <knielsen@knielsen-hq.org> | 2012-01-23 12:20:16 +0100 |
---|---|---|
committer | unknown <knielsen@knielsen-hq.org> | 2012-01-23 12:20:16 +0100 |
commit | cfd4fcb0bc3d469dfca74dae30d17250d65fdd91 (patch) | |
tree | 63748edc7d791bf41847fa8b678e38d3db952dc6 /debian/mysql-common.postrm | |
parent | 3cb24fff33105f40c2f4b696a06449032ec09604 (diff) | |
download | mariadb-git-cfd4fcb0bc3d469dfca74dae30d17250d65fdd91.tar.gz |
Initial draft for building .deb packages for MariaDB 5.5.
Diffstat (limited to 'debian/mysql-common.postrm')
-rw-r--r-- | debian/mysql-common.postrm | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/debian/mysql-common.postrm b/debian/mysql-common.postrm new file mode 100644 index 00000000000..0d3f8aed83d --- /dev/null +++ b/debian/mysql-common.postrm @@ -0,0 +1,7 @@ +#!/bin/bash -e + +if [ "$1" = "purge" ]; then + rmdir /etc/mysql 2>/dev/null || true +fi + +#DEBHELPER# |