Minor rewordings
This commit is contained in:
parent
30ae4c3be8
commit
e9d6606659
1 changed files with 4 additions and 4 deletions
|
|
@ -461,17 +461,17 @@ SERVER_INFO = \
|
||||||
ARG_OPTIONS = \
|
ARG_OPTIONS = \
|
||||||
"""Actions on installed server. One of:
|
"""Actions on installed server. One of:
|
||||||
start - launch server+portal if not running
|
start - launch server+portal if not running
|
||||||
reload - restart server (code refresh)
|
reload - restart server in 'reload' mode
|
||||||
stop - shutdown server+portal
|
stop - shutdown server+portal
|
||||||
reboot - shutdown server+portal, then start again
|
reboot - shutdown server+portal, then start again
|
||||||
reset - restart server in shutdown-mode (not reload mode)
|
reset - restart server in 'shutdown' mode
|
||||||
sstart - start only server (requires portal)
|
sstart - start only server (requires portal)
|
||||||
kill - send kill signal to portal+server (force)
|
kill - send kill signal to portal+server (force)
|
||||||
skill = send kill signal only to server
|
skill = send kill signal only to server
|
||||||
status - show server and portal run state
|
status - show server and portal run state
|
||||||
info - show server and portal port info
|
info - show server and portal port info
|
||||||
menu - show a menu of options
|
menu - show a menu of options
|
||||||
Other input, like migrate and shell is passed on to Django."""
|
Others, like migrate, test and shell is passed on to Django."""
|
||||||
|
|
||||||
# ------------------------------------------------------------
|
# ------------------------------------------------------------
|
||||||
#
|
#
|
||||||
|
|
@ -1800,7 +1800,7 @@ def main():
|
||||||
"operation", nargs='?', default="noop",
|
"operation", nargs='?', default="noop",
|
||||||
help=ARG_OPTIONS)
|
help=ARG_OPTIONS)
|
||||||
parser.epilog = (
|
parser.epilog = (
|
||||||
"Common Django-admin commands are shell, dbshell, migrate and flush.\n"
|
"Common Django-admin commands are shell, dbshell, test and migrate.\n"
|
||||||
"See the Django documentation for more management commands.")
|
"See the Django documentation for more management commands.")
|
||||||
|
|
||||||
args, unknown_args = parser.parse_known_args()
|
args, unknown_args = parser.parse_known_args()
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue