mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 03:52:35 +01:00
8 lines
99 B
Text
8 lines
99 B
Text
|
#!/bin/bash -e
|
||
|
|
||
|
if [ "$1" = "purge" ]; then
|
||
|
rmdir /etc/mysql 2>/dev/null || true
|
||
|
fi
|
||
|
|
||
|
#DEBHELPER#
|