summaryrefslogtreecommitdiff
path: root/contrib/mac/dropoui
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/mac/dropoui')
-rwxr-xr-xcontrib/mac/dropoui27
1 files changed, 0 insertions, 27 deletions
diff --git a/contrib/mac/dropoui b/contrib/mac/dropoui
deleted file mode 100755
index b06d9cc4e6..0000000000
--- a/contrib/mac/dropoui
+++ /dev/null
@@ -1,27 +0,0 @@
-#! /bin/sh
-# Utility to remove manufacturer's oui table
-# $PostgreSQL: pgsql/contrib/mac/dropoui,v 1.2 2006/03/11 04:38:30 momjian Exp $
-
-
-args=
-
-while [ $# -gt 0 ]
-do
- case "$1" in
- --help)
- echo "Usage: $0 dbname"
- exit
- ;;
- *)
- args="$args $1"
- ;;
- esac
- shift
-done
-
-psql $args <<EOF
-drop function manuf(macaddr);
-drop table macoui;
-EOF
-
-exit