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
c938a4ea
Commit
c938a4ea
authored
Nov 15, 2007
by
Peter Eisentraut
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make synopses of -t option consistent
parent
f15c08f0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
src/bin/pg_ctl/pg_ctl.c
src/bin/pg_ctl/pg_ctl.c
+5
-5
No files found.
src/bin/pg_ctl/pg_ctl.c
View file @
c938a4ea
...
@@ -4,7 +4,7 @@
...
@@ -4,7 +4,7 @@
*
*
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
*
*
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.8
6 2007/11/10 21:48:51 momjian
Exp $
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.8
7 2007/11/15 18:37:23 petere
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -1465,22 +1465,22 @@ do_help(void)
...
@@ -1465,22 +1465,22 @@ do_help(void)
printf
(
_
(
"%s is a utility to start, stop, restart, reload configuration files,
\n
"
printf
(
_
(
"%s is a utility to start, stop, restart, reload configuration files,
\n
"
"report the status of a PostgreSQL server, or signal a PostgreSQL process.
\n\n
"
),
progname
);
"report the status of a PostgreSQL server, or signal a PostgreSQL process.
\n\n
"
),
progname
);
printf
(
_
(
"Usage:
\n
"
));
printf
(
_
(
"Usage:
\n
"
));
printf
(
_
(
" %s start [-w] [-t
secs
] [-D DATADIR] [-s] [-l FILENAME] [-o
\"
OPTIONS
\"
]
\n
"
),
progname
);
printf
(
_
(
" %s start [-w] [-t
SECS
] [-D DATADIR] [-s] [-l FILENAME] [-o
\"
OPTIONS
\"
]
\n
"
),
progname
);
printf
(
_
(
" %s stop [-W] [-D DATADIR] [-s] [-m SHUTDOWN-MODE]
\n
"
),
progname
);
printf
(
_
(
" %s stop [-W] [-D DATADIR] [-s] [-m SHUTDOWN-MODE]
\n
"
),
progname
);
printf
(
_
(
" %s restart [-w] [-t
secs
] [-D DATADIR] [-s] [-m SHUTDOWN-MODE]
\n
[-o
\"
OPTIONS
\"
]
\n
"
),
progname
);
printf
(
_
(
" %s restart [-w] [-t
SECS
] [-D DATADIR] [-s] [-m SHUTDOWN-MODE]
\n
[-o
\"
OPTIONS
\"
]
\n
"
),
progname
);
printf
(
_
(
" %s reload [-D DATADIR] [-s]
\n
"
),
progname
);
printf
(
_
(
" %s reload [-D DATADIR] [-s]
\n
"
),
progname
);
printf
(
_
(
" %s status [-D DATADIR]
\n
"
),
progname
);
printf
(
_
(
" %s status [-D DATADIR]
\n
"
),
progname
);
printf
(
_
(
" %s kill SIGNALNAME PID
\n
"
),
progname
);
printf
(
_
(
" %s kill SIGNALNAME PID
\n
"
),
progname
);
#if defined(WIN32) || defined(__CYGWIN__)
#if defined(WIN32) || defined(__CYGWIN__)
printf
(
_
(
" %s register [-N SERVICENAME] [-U USERNAME] [-P PASSWORD] [-D DATADIR]
\n
"
printf
(
_
(
" %s register [-N SERVICENAME] [-U USERNAME] [-P PASSWORD] [-D DATADIR]
\n
"
" [-w] [-t
timeout
] [-o
\"
OPTIONS
\"
]
\n
"
),
progname
);
" [-w] [-t
SECS
] [-o
\"
OPTIONS
\"
]
\n
"
),
progname
);
printf
(
_
(
" %s unregister [-N SERVICENAME]
\n
"
),
progname
);
printf
(
_
(
" %s unregister [-N SERVICENAME]
\n
"
),
progname
);
#endif
#endif
printf
(
_
(
"
\n
Common options:
\n
"
));
printf
(
_
(
"
\n
Common options:
\n
"
));
printf
(
_
(
" -D, --pgdata DATADIR location of the database storage area
\n
"
));
printf
(
_
(
" -D, --pgdata DATADIR location of the database storage area
\n
"
));
printf
(
_
(
" -s, --silent only print errors, no informational messages
\n
"
));
printf
(
_
(
" -s, --silent only print errors, no informational messages
\n
"
));
printf
(
_
(
" -t
secs
seconds to wait when using -w option
\n
"
));
printf
(
_
(
" -t
SECS
seconds to wait when using -w option
\n
"
));
printf
(
_
(
" -w wait until operation completes
\n
"
));
printf
(
_
(
" -w wait until operation completes
\n
"
));
printf
(
_
(
" -W do not wait until operation completes
\n
"
));
printf
(
_
(
" -W do not wait until operation completes
\n
"
));
printf
(
_
(
" --help show this help, then exit
\n
"
));
printf
(
_
(
" --help show this help, then exit
\n
"
));
...
...
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