summaryrefslogtreecommitdiffstats
path: root/initdb.in
diff options
context:
space:
mode:
Diffstat (limited to 'initdb.in')
-rw-r--r--initdb.in16
1 files changed, 0 insertions, 16 deletions
diff --git a/initdb.in b/initdb.in
deleted file mode 100644
index c238574..0000000
--- a/initdb.in
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/bin/sh
-#
-# Legacy action script for "service postgresql initdb"
-
-# Find the name of the service
-SERVICE_NAME=$(basename $(dirname "$0"))
-if [ x"$SERVICE_NAME" = x. ]
-then
- SERVICE_NAME=postgresql
-fi
-
-echo Hint: the preferred way to do this is now '"postgresql-setup initdb"' >&2
-
-/usr/bin/postgresql-setup initdb "$SERVICE_NAME"
-
-exit $?