diff options
author | Kim Alvefur <zash@zash.se> | 2021-07-15 00:35:57 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-07-15 00:35:57 +0200 |
commit | f04f06dec550fcc5153efd08f4136535570196fa (patch) | |
tree | bf6e9ffd8fca16a5cb1cc8cb7ce2d0226e195882 /prosodyctl | |
parent | 5d8bae3294f740601092226c7bd36a6176853237 (diff) | |
download | prosody-f04f06dec550fcc5153efd08f4136535570196fa.tar.gz prosody-f04f06dec550fcc5153efd08f4136535570196fa.zip |
prosodyctl: Add 'shell' to command listing
Diffstat (limited to 'prosodyctl')
-rwxr-xr-x | prosodyctl | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -660,6 +660,7 @@ local command_runner = async.runner(function () "adduser"; "passwd"; "deluser"; "Process management:", "start"; "stop"; "restart"; "reload"; "status"; + "shell", "Informative:", "about", "check", @@ -668,7 +669,7 @@ local command_runner = async.runner(function () local external_commands = { cert = "Manage certificates", check = "Perform basic checks on your Prosody installation", - shell = "Lorem ipsum dolor sit amet", -- FIXME + shell = "Interact with a running Prosody", } local done = {}; |