summaryrefslogtreecommitdiff
path: root/src/bin/cleardbdir
diff options
context:
space:
mode:
authorBruce Momjian1999-12-07 22:43:03 +0000
committerBruce Momjian1999-12-07 22:43:03 +0000
commita010be7543f7b1d880857c85bdad0660edd767c7 (patch)
tree10c15c56fce6ce228b9204c15da2e49d58c53654 /src/bin/cleardbdir
parenta0aab48fcd86e3a167c5bd16bb8a16b8a85e9332 (diff)
Peter's file removals.
Diffstat (limited to 'src/bin/cleardbdir')
-rw-r--r--src/bin/cleardbdir/Makefile28
-rw-r--r--src/bin/cleardbdir/cleardbdir.sh27
2 files changed, 0 insertions, 55 deletions
diff --git a/src/bin/cleardbdir/Makefile b/src/bin/cleardbdir/Makefile
deleted file mode 100644
index dc18f007237..00000000000
--- a/src/bin/cleardbdir/Makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-#-------------------------------------------------------------------------
-#
-# Makefile.inc--
-# Makefile for bin/cleardbdir
-#
-# Copyright (c) 1994, Regents of the University of California
-#
-#
-# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/bin/cleardbdir/Attic/Makefile,v 1.8 1998/04/06 16:49:24 momjian Exp $
-#
-#-------------------------------------------------------------------------
-
-SRCDIR= ../..
-include ../../Makefile.global
-
-all: cleardbdir
-
-cleardbdir:
- cp cleardbdir.sh cleardbdir
-
-install: cleardbdir
- $(INSTALL) $(INSTL_EXE_OPTS) $< $(BINDIR)/$<
-
-clean:
- rm -f cleardbdir
-
-dep depend:
diff --git a/src/bin/cleardbdir/cleardbdir.sh b/src/bin/cleardbdir/cleardbdir.sh
deleted file mode 100644
index 39bdce18ef6..00000000000
--- a/src/bin/cleardbdir/cleardbdir.sh
+++ /dev/null
@@ -1,27 +0,0 @@
-#!/bin/sh
-#-------------------------------------------------------------------------
-#
-# cleardbdir.sh--
-# completely clear out the database directory
-#
-# A program by this name used to be necessary because the database
-# files were mixed in with postgres program files. Now, the database
-# files are in their own directory so you can just rm it.
-#
-# We have to ship this program, which now just tells the user there's
-# no such program, to make sure that the old program from
-# a prior release gets deleted. If it hung around, it could confuse
-# the user.
-#
-# Copyright (c) 1994, Regents of the University of California
-#
-#
-# IDENTIFICATION
-# $Header: /cvsroot/pgsql/src/bin/cleardbdir/Attic/cleardbdir.sh,v 1.2 1996/09/23 08:23:03 scrappy Exp $
-#
-#-------------------------------------------------------------------------
-
-echo "The cleardbir program no longer exists. To remove an old database"
-echo "system, simply wipe out the whole directory that contains it."
-echo
-echo "You can create a new database system with initdb."