mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
438ed0408c
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.
8 lines
145 B
Bash
8 lines
145 B
Bash
#!/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#
|