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
212f7bdf
Commit
212f7bdf
authored
Aug 22, 1998
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Patch to allow createuser options from the command line.
parent
99a099d4
Changes
9
Show whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
106 additions
and
66 deletions
+106
-66
src/bin/createuser/Makefile
src/bin/createuser/Makefile
+3
-3
src/bin/createuser/createuser.sh
src/bin/createuser/createuser.sh
+55
-43
src/bin/destroyuser/Makefile
src/bin/destroyuser/Makefile
+3
-3
src/bin/destroyuser/destroyuser.sh
src/bin/destroyuser/destroyuser.sh
+3
-3
src/bin/initdb/initdb.sh
src/bin/initdb/initdb.sh
+2
-2
src/bin/initlocation/Makefile
src/bin/initlocation/Makefile
+3
-3
src/bin/ipcclean/Makefile
src/bin/ipcclean/Makefile
+2
-2
src/bin/ipcclean/ipcclean.sh
src/bin/ipcclean/ipcclean.sh
+2
-2
src/man/createuser.1
src/man/createuser.1
+33
-5
No files found.
src/bin/createuser/Makefile
View file @
212f7bdf
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/createuser/Attic/Makefile,v 1.
8 1998/04/06 16:49:37
momjian Exp $
# $Header: /cvsroot/pgsql/src/bin/createuser/Attic/Makefile,v 1.
9 1998/08/22 05:19:16
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -15,8 +15,8 @@ SRCDIR= ../..
include
../../Makefile.global
SEDSCRIPT
=
\
-e
"s^
_fUnKy_DASH_N_sTuFf_
^
$(DASH_N)
^g"
\
-e
"s^
_fUnKy_BACKSLASH_C_sTuFf_
^
$(BACKSLASH_C)
^g"
-e
"s^
PG_OPT_DASH_N_PARAM
^
$(DASH_N)
^g"
\
-e
"s^
PG_OPT_BACKSLASH_C_PARAM
^
$(BACKSLASH_C)
^g"
all
:
createuser
...
...
src/bin/createuser/createuser.sh
View file @
212f7bdf
...
...
@@ -8,13 +8,16 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/createuser/Attic/createuser.sh,v 1.
9 1998/02/25 13:08:37 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/bin/createuser/Attic/createuser.sh,v 1.
10 1998/08/22 05:19:17 momjian
Exp $
#
# Note - this should NOT be setuid.
#
#-------------------------------------------------------------------------
CMDNAME
=
`
basename
$0
`
SYSID
=
CANADDUSER
=
CANCREATE
=
if
[
-z
"
$USER
"
]
;
then
if
[
-z
"
$LOGNAME
"
]
;
then
...
...
@@ -34,6 +37,11 @@ do
-a
)
AUTHSYS
=
$2
;
shift
;;
-h
)
PGHOST
=
$2
;
shift
;;
-p
)
PGPORT
=
$2
;
shift
;;
-d
)
CANCREATE
=
t
;;
-D
)
CANCREATE
=
f
;;
-u
)
CANADDUSER
=
t
;;
-U
)
CANADDUSER
=
f
;;
-i
)
SYSID
=
$2
;
shift
;;
*
)
NEWUSER
=
$1
;;
esac
shift
;
...
...
@@ -96,7 +104,7 @@ fi
if
[
-z
"
$NEWUSER
"
]
then
echo
_fUnKy_DASH_N_sTuFf_
"Enter name of user to add ---> _fUnKy_BACKSLASH_C_sTuFf_
"
echo
PG_OPT_DASH_N_PARAM
"Enter name of user to add ---> PG_OPT_BACKSLASH_C_PARAM
"
read
NEWUSER
fi
...
...
@@ -124,7 +132,6 @@ done=0
while
[
$done
-ne
1
]
do
SYSID
=
DEFSYSID
=
`
pg_id
$NEWUSER
2>/dev/null
`
if
[
$?
-eq
0
]
;
then
DEFMSG
=
" or RETURN to use unix user ID:
$DEFSYSID
"
...
...
@@ -134,15 +141,16 @@ do
fi
while
[
-z
"
$SYSID
"
]
do
echo
_fUnKy_DASH_N_sTuFf_
"Enter user's postgres ID
$DEFMSG
-> _fUnKy_BACKSLASH_C_sTuFf_
"
echo
PG_OPT_DASH_N_PARAM
"Enter user's postgres ID
$DEFMSG
-> PG_OPT_BACKSLASH_C_PARAM
"
read
SYSID
[
-z
"
$SYSID
"
]
&&
SYSID
=
$DEFSYSID
;
SYSIDISNUM
=
`
echo
$SYSID
| egrep
'^[0-9]+$'
`
if
[
-z
"
$SYSIDISNUM
"
]
then
echo
"
$CMDNAME
: the postgres ID must be a number"
exit
1
SYSID
=
fi
done
QUERY
=
"select usename from pg_user where usesysid = '
$SYSID
'::int4"
RES
=
`
$PSQL
-c
"
$QUERY
"
template1
`
if
[
$?
-ne
0
]
...
...
@@ -158,7 +166,6 @@ do
else
done
=
1
fi
done
done
#
...
...
@@ -168,39 +175,44 @@ done
#
# can the user create databases?
#
if
[
-z
"
$CANCREATE
"
]
then
yn
=
f
yn
=
f
while
[
"
$yn
"
!=
y
-a
"
$yn
"
!=
n
]
do
echo
_fUnKy_DASH_N_sTuFf_
"Is user
\"
$NEWUSER
\"
allowed to create databases (y/n) _fUnKy_BACKSLASH_C_sTuFf_"
while
[
"
$yn
"
!=
y
-a
"
$yn
"
!=
n
]
do
echo
PG_OPT_DASH_N_PARAM
"Is user
\"
$NEWUSER
\"
allowed to create databases (y/n) PG_OPT_BACKSLASH_C_PARAM"
read
yn
done
done
if
[
"
$yn
"
=
y
]
then
if
[
"
$yn
"
=
y
]
then
CANCREATE
=
t
else
else
CANCREATE
=
f
fi
fi
#
# can the user add users?
#
yn
=
f
if
[
-z
"
$CANADDUSER
"
]
then
yn
=
f
while
[
"
$yn
"
!=
y
-a
"
$yn
"
!=
n
]
do
echo
_fUnKy_DASH_N_sTuFf_
"Is user
\"
$NEWUSER
\"
allowed to add users? (y/n) _fUnKy_BACKSLASH_C_sTuFf_
"
while
[
"
$yn
"
!=
y
-a
"
$yn
"
!=
n
]
do
echo
PG_OPT_DASH_N_PARAM
"Is user
\"
$NEWUSER
\"
allowed to add users? (y/n) PG_OPT_BACKSLASH_C_PARAM
"
read
yn
done
done
if
(
test
"
$yn
"
=
y
)
then
if
(
test
"
$yn
"
=
y
)
then
CANADDUSER
=
t
else
else
CANADDUSER
=
f
fi
fi
QUERY
=
"insert into pg_shadow
\
...
...
src/bin/destroyuser/Makefile
View file @
212f7bdf
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/destroyuser/Attic/Makefile,v 1.
8 1998/04/06 16:50:05
momjian Exp $
# $Header: /cvsroot/pgsql/src/bin/destroyuser/Attic/Makefile,v 1.
9 1998/08/22 05:19:19
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -15,8 +15,8 @@ SRCDIR= ../..
include
../../Makefile.global
SEDSCRIPT
=
\
-e
"s^
_fUnKy_DASH_N_sTuFf_
^
$(DASH_N)
^g"
\
-e
"s^
_fUnKy_BACKSLASH_C_sTuFf_
^
$(BACKSLASH_C)
^g"
-e
"s^
PG_OPT_DASH_N_PARAM
^
$(DASH_N)
^g"
\
-e
"s^
PG_OPT_BACKSLASH_C_PARAM
^
$(BACKSLASH_C)
^g"
all
:
destroyuser
...
...
src/bin/destroyuser/destroyuser.sh
View file @
212f7bdf
...
...
@@ -8,7 +8,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/destroyuser/Attic/destroyuser.sh,v 1.
8 1998/02/25 13:08:55 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/bin/destroyuser/Attic/destroyuser.sh,v 1.
9 1998/08/22 05:19:21 momjian
Exp $
#
# Note - this should NOT be setuid.
#
...
...
@@ -90,7 +90,7 @@ fi
if
[
-z
"
$DELUSER
"
]
then
echo
_fUnKy_DASH_N_sTuFf_
"Enter name of user to delete ---> _fUnKy_BACKSLASH_C_sTuFf_
"
echo
OPT_DASH_N_PARAM
"Enter name of user to delete ---> OPT_BACKSLASH_C_PARAM
"
read
DELUSER
fi
...
...
@@ -154,7 +154,7 @@ then
yn
=
f
while
[
$yn
!=
y
-a
$yn
!=
n
]
do
echo
_fUnKy_DASH_N_sTuFf_
"Deleting user
$DELUSER
will destroy them. Continue (y/n)? _fUnKy_BACKSLASH_C_sTuFf_
"
echo
OPT_DASH_N_PARAM
"Deleting user
$DELUSER
will destroy them. Continue (y/n)? OPT_BACKSLASH_C_PARAM
"
read
yn
done
...
...
src/bin/initdb/initdb.sh
View file @
212f7bdf
...
...
@@ -26,12 +26,12 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.5
1 1998/08/21 23:22:36
momjian Exp $
# $Header: /cvsroot/pgsql/src/bin/initdb/Attic/initdb.sh,v 1.5
2 1998/08/22 05:19:23
momjian Exp $
#
#-------------------------------------------------------------------------
# ----------------
# The
_fUnKy_..._sTuFf_
gets set when the script is built (with make)
# The
OPT_..._PARAM
gets set when the script is built (with make)
# from parameters set in the make file.
#
# ----------------
...
...
src/bin/initlocation/Makefile
View file @
212f7bdf
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/initlocation/Attic/Makefile,v 1.
5 1998/04/06 16:50:30
momjian Exp $
# $Header: /cvsroot/pgsql/src/bin/initlocation/Attic/Makefile,v 1.
6 1998/08/22 05:19:25
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -15,8 +15,8 @@ SRCDIR= ../..
include
../../Makefile.global
SEDSCRIPT
=
\
-e
"s^
_fUnKy_NAMEDATALEN_sTuFf_
^
$(NAMEDATALEN)
^g"
\
-e
"s^
_fUnKy_OIDNAMELEN_sTuFf_
^
$(OIDNAMELEN)
^g"
-e
"s^
PG_OPT_NAMEDATALEN_PARAM
^
$(NAMEDATALEN)
^g"
\
-e
"s^
PG_OPT_OIDNAMELEN_PARAM
^
$(OIDNAMELEN)
^g"
all
:
initlocation
...
...
src/bin/ipcclean/Makefile
View file @
212f7bdf
...
...
@@ -7,7 +7,7 @@
#
#
# IDENTIFICATION
# $Header: /cvsroot/pgsql/src/bin/ipcclean/Attic/Makefile,v 1.
7 1998/04/06 16:50:36
momjian Exp $
# $Header: /cvsroot/pgsql/src/bin/ipcclean/Attic/Makefile,v 1.
8 1998/08/22 05:19:29
momjian Exp $
#
#-------------------------------------------------------------------------
...
...
@@ -15,7 +15,7 @@ SRCDIR= ../..
include
../../Makefile.global
SEDSCRIPT
=
\
-e
"s^
_fUnKy_IPCCLEANPATH_sTuFf_
^
$(IPCSDIR)
^g"
-e
"s^
PG_OPT_IPCCLEANPATH_PARAM
^
$(IPCSDIR)
^g"
all
:
ipcclean
...
...
src/bin/ipcclean/ipcclean.sh
View file @
212f7bdf
#!/bin/sh
#
# $Header: /cvsroot/pgsql/src/bin/ipcclean/Attic/ipcclean.sh,v 1.
1.1.1 1996/07/09 06:22:13 scrappy
Exp $
# $Header: /cvsroot/pgsql/src/bin/ipcclean/Attic/ipcclean.sh,v 1.
2 1998/08/22 05:19:31 momjian
Exp $
#
PATH
=
_fUnKy_IPCCLEANPATH_sTuFf_
:
$PATH
PATH
=
PG_OPT_IPCCLEANPATH_PARAM
:
$PATH
export
PATH
ipcs | egrep
'^m .*|^s .*'
| egrep
"
`
whoami
`
|postgres"
|
\
awk
'{printf "ipcrm -%s %s\n", $1, $2}'
'-'
| sh
src/man/createuser.1
View file @
212f7bdf
.\" This is -*-nroff-*-
.\" XXX standard disclaimer belongs here....
.\" $Header: /cvsroot/pgsql/src/man/Attic/createuser.1,v 1.1
1 1998/07/24 16:44:03
momjian Exp $
.\" $Header: /cvsroot/pgsql/src/man/Attic/createuser.1,v 1.1
2 1998/08/22 05:19:35
momjian Exp $
.TH CREATEUSER UNIX 11/05/95 PostgreSQL PostgreSQL
.SH NAME
createuser - create a Postgres user
...
...
@@ -10,11 +10,26 @@ createuser - create a Postgres user
.BR -a
system]
[\c
.BR -d
]
[\c
.BR -D
]
[\c
.BR -h
host]
[\c
.BR -i
id]
[\c
.BR -p
port]
[\c
.BR -u
]
[\c
.BR -U
]
[username]
.SH DESCRIPTION
.IR Createuser
...
...
@@ -57,11 +72,22 @@ to use in connecting to the
.IR postmaster
process. This option no longer has any effect.
.TP
.BR "-d"
Allows the user to create databases.
.TP
.BR "-D"
Does not allow the user to create databases.
.TP
.BR "-h" " host"
Specifies the hostname of the machine on which the
.IR postmaster
is running. Defaults to using local Unix domain sockets.
.TP
.BR "-i" " id"
Use
.IR id
as the user id.
.TP
.BR "-p" " port"
Specifies the TCP/IP port or local Unix domain socket file
extension on which the
...
...
@@ -69,6 +95,12 @@ extension on which the
is listening for connections. Defaults to 5432, or the value of the
.SM PGPORT
environment variable (if set).
.TP
.BR "-u"
Allows the user to create other users.
.TP
.BR "-U"
Does not allow the user to create other users.
.SH "INTERACTIVE QUESTIONS"
Once invoked with the above options,
.IR createuser
...
...
@@ -119,7 +151,3 @@ properly installed Postgres and initialized the site with
.SH NOTE
The command internally runs \fIcreate user\fP from \fIpsql\fP
connected to the \fItemplate1\fP database to perform the operation.
.SH BUGS
Postgres user-ids and user names should not have anything to do
with the constraints of Unix.
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