You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-21 13:40:58 +03:00
Adds support for: * columnstore-post-install on RPM install * MCOL-3708 mcsadmin shutdown on uninstall There is a counterpart for the server tree to propagate the RPM settings up and add Debian packaging support.
18 lines
214 B
Bash
18 lines
214 B
Bash
|
|
mcsadmin shutdown y
|
|
rpmmode=upgrade
|
|
if [ "$1" -eq "$1" 2> /dev/null ]; then
|
|
if [ $1 -ne 1 ]; then
|
|
rpmmode=erase
|
|
fi
|
|
else
|
|
rpmmode=erase
|
|
fi
|
|
|
|
if [ $rpmmode = erase ]; then
|
|
columnstore-pre-uninstall
|
|
fi
|
|
|
|
exit 0
|
|
|