diff --git a/doc/src/sgml/ref/createuser.sgml b/doc/src/sgml/ref/createuser.sgml index 54ada23fe5b420c950b56b45bfbd93d0cedabd26..0a50582c79abb6881ab682544fb3c46318aae10c 100644 --- a/doc/src/sgml/ref/createuser.sgml +++ b/doc/src/sgml/ref/createuser.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/createuser.sgml,v 1.17 2001/05/02 14:46:33 momjian Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/createuser.sgml,v 1.18 2001/08/25 17:46:11 momjian Exp $ Postgres documentation --> @@ -132,6 +132,26 @@ Postgres documentation </listitem> </varlistentry> + <varlistentry> + <term>--encrypted</term> + <listitem> + <para> + Encrypts the user's password stored in the database. If not + specified, the default is used. + </para> + </listitem> + </varlistentry> + + <varlistentry> + <term>--unencrypted</term> + <listitem> + <para> + Does not encrypt the user's password stored in the database. If + not specified, the default is used. + </para> + </listitem> + </varlistentry> + <varlistentry> <term><replaceable class="parameter">username</replaceable></term> <listitem> diff --git a/src/bin/scripts/createuser b/src/bin/scripts/createuser index 359e18df2aeae627fc1e55a835983c098c50468d..a57531aac054fdf053e58c6ec740a14e83243a68 100644 --- a/src/bin/scripts/createuser +++ b/src/bin/scripts/createuser @@ -9,7 +9,7 @@ # # # IDENTIFICATION -# $Header: /cvsroot/pgsql/src/bin/scripts/Attic/createuser,v 1.17 2001/02/18 18:34:01 momjian Exp $ +# $Header: /cvsroot/pgsql/src/bin/scripts/Attic/createuser,v 1.18 2001/08/25 17:46:11 momjian Exp $ # # Note - this should NOT be setuid. # @@ -25,6 +25,7 @@ CanCreateDb= PwPrompt= Password= PSQLOPT= +Encrypted= # blank uses default # Check for echo -n vs echo \c @@ -103,6 +104,12 @@ do --sysid=*) SysID=`echo "$1" | sed 's/^--sysid=//'` ;; + --encrypted) + Encrypted=t + ;; + --unencrypted) + Encrypted=f + ;; -i*) SysID=`echo "$1" | sed 's/^-i//'` ;; @@ -226,6 +233,8 @@ SUBQUERY= [ "$CanCreateDb" = f ] && QUERY="$QUERY NOCREATEDB" [ "$CanAddUser" = t ] && QUERY="$QUERY CREATEUSER" [ "$CanAddUser" = f ] && QUERY="$QUERY NOCREATEUSER" +[ "$Encrypted" = t ] && QUERY="$QUERY ENCRYPTED" +[ "$Encrypted" = f ] && QUERY="$QUERY UNENCRYPTED" ${PATHNAME}psql -c "$QUERY" -d template1 $PSQLOPT if [ $? -ne 0 ]; then