pgsql: Fix examples of how to use "su" while starting the server.

Started by Tom Lanealmost 14 years ago1 messagescomitters
Jump to latest
#1Tom Lane
tgl@sss.pgh.pa.us

Fix examples of how to use "su" while starting the server.

The syntax "su -c 'command' username" is not accepted by all versions of
su, for example not OpenBSD's. More portable is "su username -c
'command'". So change runtime.sgml to recommend that syntax. Also,
add a -D switch to the OpenBSD example script, for consistency with other
examples. Per Denis Lapshin and Gábor Hidvégi.

Branch
------
REL8_3_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/3b6460ab6f8ff935d31450bd5dd6aaa55f1ea60e

Modified Files
--------------
doc/src/sgml/runtime.sgml | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)