mirror of
https://github.com/postgres/postgres.git
synced 2025-07-08 11:42:09 +03:00
155 lines
3.3 KiB
Bash
155 lines
3.3 KiB
Bash
#!/bin/sh
|
|
#-------------------------------------------------------------------------
|
|
#
|
|
# createdb--
|
|
# create a postgres database
|
|
#
|
|
# This program runs psql with the "-c" option to create
|
|
# the requested database.
|
|
#
|
|
# Copyright (c) 1994, Regents of the University of California
|
|
#
|
|
#
|
|
# IDENTIFICATION
|
|
# $Header: /cvsroot/pgsql/src/bin/scripts/Attic/createdb,v 1.3 1999/12/08 10:29:55 momjian Exp $
|
|
#
|
|
#-------------------------------------------------------------------------
|
|
|
|
CMDNAME=`basename $0`
|
|
|
|
MB=
|
|
PSQLOPT=
|
|
dbname=
|
|
dbcomment=
|
|
dbpath=
|
|
|
|
while [ $# -gt 0 ]
|
|
do
|
|
case "$1" in
|
|
--help|-\?)
|
|
usage=t
|
|
break
|
|
;;
|
|
# options passed on to psql
|
|
--host|-h)
|
|
PSQLOPT="$PSQLOPT -h $2"
|
|
shift;;
|
|
-h*)
|
|
PSQLOPT="$PSQLOPT $1"
|
|
;;
|
|
--host=*)
|
|
PSQLOPT="$PSQLOPT -h "`echo $1 | sed 's/^--host=//'`
|
|
;;
|
|
--port|-p)
|
|
PSQLOPT="$PSQLOPT -p $2"
|
|
shift;;
|
|
-p*)
|
|
PSQLOPT="$PSQLOPT $1"
|
|
;;
|
|
--port=*)
|
|
PSQLOPT="$PSQLOPT -p "`echo $1 | sed 's/^--port=//'`
|
|
;;
|
|
--user|--username|-U)
|
|
PSQLOPT="$PSQLOPT -U '$2'"
|
|
shift;;
|
|
-U*)
|
|
PSQLOPT="$PSQLOPT $1"
|
|
;;
|
|
--user=*)
|
|
PSQLOPT="$PSQLOPT -U "`echo $1 | sed 's/^--user=//'`
|
|
;;
|
|
--username=*)
|
|
PSQLOPT="$PSQLOPT -U "`echo $1 | sed 's/^--username=//'`
|
|
;;
|
|
--password|-W)
|
|
PSQLOPT="$PSQLOPT -W"
|
|
;;
|
|
--echo|-e)
|
|
PSQLOPT="$PSQLOPT -e"
|
|
;;
|
|
--quiet|-q)
|
|
PSQLOPT="$PSQLOPT -o /dev/null"
|
|
;;
|
|
# options converted into SQL command
|
|
--location|-D)
|
|
dbpath="$2"
|
|
shift;;
|
|
-D*)
|
|
dbpath=`echo $1 | sed 's/^-D//'`
|
|
;;
|
|
--location=*)
|
|
dbpath=`echo $1 | sed 's/^--location=//'`
|
|
;;
|
|
--encoding|-E)
|
|
MB=$2
|
|
shift;;
|
|
-E*)
|
|
MB=`echo $1 | sed 's/^-E//'`
|
|
;;
|
|
--encoding=*)
|
|
MB=`echo $1 | sed 's/^--encoding=//'`
|
|
;;
|
|
-*)
|
|
echo "$CMDNAME: Unrecognized option: $1. Try -? for help."
|
|
exit 1
|
|
;;
|
|
*)
|
|
if [ -z "$dbname" ]; then
|
|
dbname="$1"
|
|
else
|
|
dbcomment="$1"
|
|
fi
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
|
|
if [ "$usage" ]; then
|
|
echo "Usage: $CMDNAME [-h server] [-p port] [-D path] \\"
|
|
echo " [-E encoding] [-U username] dbname [description]"
|
|
exit 0
|
|
fi
|
|
|
|
|
|
if [ "$MB" ]
|
|
then if [ -z "`pg_encoding '$MB'`" ]
|
|
then
|
|
echo "$CMDNAME: \"$MB\" is not a valid encoding name."
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
if [ -z "$dbname" ]; then
|
|
echo "$CMDNAME: Missing required argument database name. Try -? for help."
|
|
exit 1
|
|
fi
|
|
|
|
|
|
dbpath=`echo $dbpath | sed "s/'/\\\\\'/g"`
|
|
dbname=`echo $dbname | sed 's/\"/\\\"/g'`
|
|
|
|
withstring=
|
|
[ "$dbpath" ] && withstring="$withstring LOCATION = '$dbpath'"
|
|
[ "$MB" ] && withstring="$withstring ENCODING = '$MB'"
|
|
[ "$withstring" ] && withstring=" WITH$withstring"
|
|
|
|
psql $PSQLOPT -d template1 -c "CREATE DATABASE \"$dbname\"$withstring"
|
|
if [ $? -ne 0 ]; then
|
|
echo "$CMDNAME: Database creation failed."
|
|
exit 1
|
|
fi
|
|
|
|
# Insert comment as well, if requested
|
|
[ -z "$dbcomment" ] && exit 0
|
|
|
|
dbcomment=`echo $dbcomment | sed "s/'/\\\\\'/g"`
|
|
|
|
psql $PSQLOPT -d template1 -c "COMMENT ON DATABASE \"$dbname\" IS '$dbcomment'"
|
|
if [ $? -ne 0 ]; then
|
|
echo "$CMDNAME: Comment creation failed. (Database was created.)"
|
|
exit 1
|
|
fi
|
|
|
|
exit 0
|