|
|
|
#! /bin/bash
set -e
if [ "$1" = "remove" ]
then
if test -x /usr/sbin/invoke-rc.d; then
/usr/sbin/invoke-rc.d --quiet postgresql autovac-stop || true
else
test -x /etc/init.d/postgresql && /etc/init.d/postgresql autovac-stop || true
fi
fi
| Results 1 - 1 |