mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
4154f3aa05
self-contained.
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#
|