Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
ff50e5ab
Commit
ff50e5ab
authored
Jul 25, 1996
by
Marc G. Fournier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Switched from using monitor to using psql
Submitted by: Rick Weldon <rick@wisetech.com>
parent
69ee15d6
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
19 deletions
+20
-19
src/bin/createdb/createdb.sh
src/bin/createdb/createdb.sh
+2
-2
src/bin/createuser/createuser.sh
src/bin/createuser/createuser.sh
+7
-7
src/bin/destroydb/destroydb.sh
src/bin/destroydb/destroydb.sh
+2
-2
src/bin/destroyuser/destroyuser.sh
src/bin/destroyuser/destroyuser.sh
+9
-8
No files found.
src/bin/createdb/createdb.sh
View file @
ff50e5ab
...
...
@@ -11,7 +11,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/createdb/Attic/createdb.sh,v 1.
1.1.1 1996/07/09 06:22:12
scrappy Exp $
# $Header: /cvsroot/pgsql/src/bin/createdb/Attic/createdb.sh,v 1.
2 1996/07/25 06:55:23
scrappy Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -58,7 +58,7 @@ done
AUTHOPT
=
"-a
$AUTHSYS
"
[
-z
"
$AUTHSYS
"
]
&&
AUTHOPT
=
""
monitor
-TN
$AUTHOPT
-h
$PGHOST
-p
$PGPORT
-c
"create database
$dbname
"
template1
||
{
psql
-Tq
$AUTHOPT
-H
$PGHOST
-p
$PGPORT
-c
"create database
$dbname
"
template1
||
{
echo
"
$CMDNAME
: database creation failed on
$dbname
."
exit
1
}
...
...
src/bin/createuser/createuser.sh
View file @
ff50e5ab
...
...
@@ -8,7 +8,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/createuser/Attic/createuser.sh,v 1.
1.1.1 1996/07/09 06:22:12
scrappy Exp $
# $Header: /cvsroot/pgsql/src/bin/createuser/Attic/createuser.sh,v 1.
2 1996/07/25 06:55:30
scrappy Exp $
#
# Note - this should NOT be setuid.
#
...
...
@@ -55,13 +55,13 @@ done
AUTHOPT
=
"-a
$AUTHSYS
"
[
-z
"
$AUTHSYS
"
]
&&
AUTHOPT
=
""
MARGS
=
"-TN
$AUTHOPT
-h
$PGHOST
-p
$PGPORT
"
PARGS
=
"-T -q
$AUTHOPT
-H
$PGHOST
-p
$PGPORT
"
#
# generate the first part of the actual monitor command
#
MONITOR
=
"monitor
$M
ARGS
"
PSQL
=
"psql
$P
ARGS
"
#
# see if user $USER is allowed to create new users
...
...
@@ -70,7 +70,7 @@ MONITOR="monitor $MARGS"
QUERY
=
"select usesuper from pg_user where usename = '
$USER
'"
#echo $QUERY
ADDUSER
=
`
$
MONITOR
-TN
-c
"
$QUERY
"
template1
`
ADDUSER
=
`
$
PSQL
-c
"
$QUERY
"
template1
`
if
[
$?
-ne
0
]
then
...
...
@@ -100,7 +100,7 @@ fi
QUERY
=
"select usesysid from pg_user where usename = '
$NEWUSER
'"
RES
=
`
$
MONITOR
-TN
-c
"
$QUERY
"
template1
`
RES
=
`
$
PSQL
-c
"
$QUERY
"
template1
`
if
[
$?
-ne
0
]
then
...
...
@@ -142,7 +142,7 @@ do
exit
1
fi
QUERY
=
"select usename from pg_user where usesysid = '
$SYSID
'::int4"
RES
=
`
$
MONITOR
-TN
-c
"
$QUERY
"
template1
`
RES
=
`
$
PSQL
-c
"
$QUERY
"
template1
`
if
[
$?
-ne
0
]
then
echo
"
$CMDNAME
: database access failed."
...
...
@@ -206,7 +206,7 @@ QUERY="insert into pg_user \
values
\
('
$NEWUSER
',
$SYSID
, '
$CANCREATE
', 't', '
$CANADDUSER
','t')"
RES
=
`
$
MONITOR
-TN
-c
"
$QUERY
"
template1
`
RES
=
`
$
PSQL
-c
"
$QUERY
"
template1
`
#
# Wrap things up. If the user was created successfully, AND the user was
...
...
src/bin/destroydb/destroydb.sh
View file @
ff50e5ab
...
...
@@ -11,7 +11,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/destroydb/Attic/destroydb.sh,v 1.
1.1.1 1996/07/09 06:22:12
scrappy Exp $
# $Header: /cvsroot/pgsql/src/bin/destroydb/Attic/destroydb.sh,v 1.
2 1996/07/25 06:55:41
scrappy Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -58,7 +58,7 @@ done
AUTHOPT
=
"-a
$AUTHSYS
"
[
-z
"
$AUTHSYS
"
]
&&
AUTHOPT
=
""
monitor
-TN
-h
$PGHOST
-p
$PGPORT
-c
"drop database
$dbname
"
template1
psql
-Tq
-H
$PGHOST
-p
$PGPORT
-c
"drop database
$dbname
"
template1
if
[
$?
-ne
0
]
then
...
...
src/bin/destroyuser/destroyuser.sh
View file @
ff50e5ab
...
...
@@ -8,7 +8,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/destroyuser/Attic/destroyuser.sh,v 1.
1.1.1 1996/07/09 06:22:12
scrappy Exp $
# $Header: /cvsroot/pgsql/src/bin/destroyuser/Attic/destroyuser.sh,v 1.
2 1996/07/25 06:55:49
scrappy Exp $
#
# Note - this should NOT be setuid.
#
...
...
@@ -55,12 +55,13 @@ done
AUTHOPT
=
"-a
$AUTHSYS
"
[
-z
"
$AUTHSYS
"
]
&&
AUTHOPT
=
""
MARGS
=
"-TN
$AUTHOPT
-p
$PGPORT
-h
$PGHOST
"
PARGS
=
"-Tq
$AUTHOPT
-p
$PGPORT
-H
$PGHOST
"
#
# generate the first part of the actual monitor command
#
MONITOR
=
"monitor
$MARGS
"
PSQL
=
"psql
$PARGS
"
#
# see if user $USER is allowed to create new users. Only a user who can
...
...
@@ -68,7 +69,7 @@ MONITOR="monitor $MARGS"
#
QUERY
=
"select usesuper from pg_user where usename = '
$USER
'"
ADDUSER
=
`
$
MONITOR
-c
"
$QUERY
"
template1
`
ADDUSER
=
`
$
PSQL
-c
"
$QUERY
"
template1
`
if
[
$?
-ne
0
]
then
...
...
@@ -93,7 +94,7 @@ fi
QUERY
=
"select usesysid from pg_user where usename = '
$DELUSER
'"
RES
=
`
$
MONITOR
-c
"
$QUERY
"
template1
`
RES
=
`
$
PSQL
-c
"
$QUERY
"
template1
`
if
[
$?
-ne
0
]
then
...
...
@@ -117,7 +118,7 @@ SYSID=`echo $RES | sed 's/ //g'`
QUERY
=
"select datname from pg_database where datdba = '
$SYSID
'::oid"
ALLDBS
=
`
$
MONITOR
-c
"
$QUERY
"
template1
`
ALLDBS
=
`
$
PSQL
-c
"
$QUERY
"
template1
`
if
[
$?
-ne
0
]
then
...
...
@@ -170,7 +171,7 @@ then
echo
"destroying database
$i
"
QUERY
=
"drop database
$i
"
$
MONITOR
-c
"
$QUERY
"
template1
$
PSQL
-c
"
$QUERY
"
template1
if
[
$?
-ne
0
]
then
echo
"
$CMDNAME
: drop database on
$i
failed - exiting"
...
...
@@ -181,7 +182,7 @@ fi
QUERY
=
"delete from pg_user where usename = '
$DELUSER
'"
$
MONITOR
-c
"
$QUERY
"
template1
$
PSQL
-c
"
$QUERY
"
template1
if
[
$?
-ne
0
]
then
echo
"
$CMDNAME
: delete of user
$DELUSER
was UNSUCCESSFUL"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment