
Pre-1.2.0 configuration scripts are no longer copied and renamed. Init scripts, ldconfig files and systemd service files are only removed if they are found.
26 lines
611 B
Bash
Executable File
26 lines
611 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# The first argument is the number of packages left after
|
|
# this one has been removed. If it is 0 then the package is being
|
|
# removed from the system.
|
|
if [ "$1" -eq 0 ]
|
|
then
|
|
if [ -f /etc/init.d/maxscale ]
|
|
then
|
|
rm /etc/init.d/maxscale
|
|
fi
|
|
|
|
if [ -f /etc/ld.so.conf.d/maxscale.conf ]
|
|
then
|
|
rm /etc/ld.so.conf.d/maxscale.conf
|
|
fi
|
|
|
|
if [ -f /usr/lib/systemd/system/maxscale.service ]
|
|
then
|
|
rm /usr/lib/systemd/system/maxscale.service
|
|
elif [ -f /lib/systemd/system/maxscale.service ]
|
|
then
|
|
rm /lib/systemd/system/maxscale.service
|
|
fi
|
|
fi
|