14 lines
367 B
Bash
Executable File
14 lines
367 B
Bash
Executable File
#!/bin/sh
|
|
if [ "$1" -eq 0 ]
|
|
then
|
|
rm -f /etc/init.d/maxscale
|
|
rm -f /etc/ld.so.conf.d/maxscale.conf
|
|
rm -f /usr/lib/systemd/system/maxscale.service
|
|
else
|
|
# Copy and rename config from old location
|
|
if [ -f "/usr/local/mariadb-maxscale/etc/MaxScale.cnf" ]
|
|
then
|
|
cp "/usr/local/mariadb-maxscale/etc/MaxScale.cnf" "/etc/maxscale.cnf"
|
|
fi
|
|
fi
|