Software /
code /
prosody
Comparison
prosodyctl @ 11247:4e803e80d7b1
prosodyctl: Remove non-existant command from hidden commands
Apparently there existed a plugin installer for a brief time in 2010,
between c5d3905c98a6 and 8f78e8164032
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Tue, 05 Jan 2021 17:08:24 +0100 |
parent | 11135:56490ffde93f |
child | 11293:cd27ac5e5afe |
comparison
equal
deleted
inserted
replaced
11246:ab189e707705 | 11247:4e803e80d7b1 |
---|---|
628 print(""); | 628 print(""); |
629 print("Usage: "..arg[0].." COMMAND [OPTIONS]"); | 629 print("Usage: "..arg[0].." COMMAND [OPTIONS]"); |
630 print(""); | 630 print(""); |
631 print("Where COMMAND may be one of:\n"); | 631 print("Where COMMAND may be one of:\n"); |
632 | 632 |
633 local hidden_commands = require "util.set".new{ "register", "unregister", "addplugin" }; | 633 local hidden_commands = require "util.set".new{ "register", "unregister" }; |
634 local commands_order = { "install", "remove", "list", "adduser", "passwd", "deluser", "start", "stop", "restart", "reload", | 634 local commands_order = { "install", "remove", "list", "adduser", "passwd", "deluser", "start", "stop", "restart", "reload", |
635 "about" }; | 635 "about" }; |
636 | 636 |
637 local done = {}; | 637 local done = {}; |
638 | 638 |