X-Git-Url: http://xvm.mit.edu/gitweb/invirt/packages/invirt-database.git/blobdiff_plain/6900ea63e877de48b4c668f660872f60ad1a5259..249ec687f251afc95b0877589a474d962fbf3d0b:/server/etc/init.d/postgresql-8.3.invirt diff --git a/server/etc/init.d/postgresql-8.3.invirt b/server/etc/init.d/postgresql-8.3.invirt deleted file mode 100755 index 1e8ca4d..0000000 --- a/server/etc/init.d/postgresql-8.3.invirt +++ /dev/null @@ -1,29 +0,0 @@ -#! /bin/sh -### BEGIN INIT INFO -# Provides: postgresql postgresql-8.3 -# Required-Start: $local_fs $remote_fs $network $time -# Required-Stop: $local_fs $remote_fs $network $time -# Should-Start: $syslog -# Should-Stop: $syslog -# Default-Start: 2 3 4 5 -# Default-Stop: 0 1 6 -# Short-Description: PostgreSQL 8.3 RDBMS server -# Description: This script proxies requests to the default postgresql-8.3, -# except for restart, which it translates to a stop request, -# and then a start request, so that PostgreSQL is shut down -# with a fast shutdown -### END INIT INFO - -case "$1" in - restart) - invoke-rc.d postgresql-8.3.invirt-orig stop - invoke-rc.d postgresql-8.3.invirt-orig start - exit $? - ;; - *) - invoke-rc.d postgresql-8.3.invirt-orig "$1" - exit $? - ;; -esac - -: