• unknown's avatar
    .deb packaging fixes: make mariadb-common a real package, which depends on · 438ed040
    unknown authored
    mysql-common and places mariadb-specific stuff in /etc/mysql/conf.d/mariadb.cnf.
    This should allow to co-exist with default Debian mysql-common package and
    help resolve dependencies when installing mariadb among multiple available
    versions of MySQL from different repositories.
    438ed040
mariadb-common.postrm 145 Bytes
#!/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#